-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.07 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"$schema": "https://json.schemastore.org/package",
"name": "strapi-plugin-publisher",
"version": "2.0.9",
"description": "A plugin for Strapi Headless CMS that provides the ability to schedule publishing for any content type.",
"scripts": {
"lint": "eslint . --fix",
"format": "prettier --write **/*.{ts,js,json,yml}",
"build": "strapi-plugin build",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link"
},
"exports": {
"./strapi-admin": {
"source": "./admin/src/index.ts",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"source": "./server/index.js",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
},
"./package.json": "./package.json"
},
"author": {
"name": "@ComfortablyCoding",
"url": "https://github.com/ComfortablyCoding"
},
"maintainers": [
{
"name": "@PluginPal",
"url": "https://github.com/PluginPal"
}
],
"homepage": "https://github.com/PluginPal/strapi-plugin-publisher#readme",
"repository": {
"type": "git",
"url": "https://github.com/PluginPal/strapi-plugin-publisher.git"
},
"bugs": {
"url": "https://github.com/PluginPal/strapi-plugin-publisher/issues"
},
"dependencies": {
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react-intl": "^6.6.2",
"react-query": "^3.39.3",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@strapi/sdk-plugin": "^5.2.7",
"@strapi/strapi": "^5.34.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.0.0",
"strip-ansi": "^6.0.1",
"styled-components": "^6.0.0"
},
"peerDependencies": {
"@strapi/design-system": "^2.1.2",
"@strapi/icons": "^2.1.2",
"@strapi/strapi": "^5.34.0",
"@strapi/utils": "^5.34.0",
"react": "^17.0.0 || ^18.0.0",
"react-router-dom": "^6.0.0",
"styled-components": "^6.0.0"
},
"strapi": {
"displayName": "Publisher",
"name": "publisher",
"description": "A plugin for Strapi Headless CMS that provides the ability to schedule publishing for any content type.",
"kind": "plugin"
},
"engines": {
"node": ">=20.0.0 <=24.x.x",
"npm": ">=6.0.0"
},
"keywords": [
"strapi",
"strapi-plugin",
"plugin",
"strapi plugin",
"publishing",
"schedule publish"
],
"license": "MIT"
}