-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.89 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.89 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
99
100
101
102
103
104
105
106
{
"name": "strapi-plugin-webtools",
"version": "1.8.0",
"description": "Everything you need to build a website with Strapi CMS",
"strapi": {
"name": "webtools",
"icon": "list",
"displayName": "Webtools",
"description": "Everything you need to build a website with Strapi CMS",
"required": false,
"kind": "plugin"
},
"files": [
"dist",
"strapi-admin.js",
"strapi-server.js"
],
"exports": {
"./strapi-admin": {
"types": "./dist/admin/index.d.ts",
"source": "./admin/index.ts",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"types": "./dist/server/index.d.ts",
"source": "./server/index.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "pack-up build && yalc push --publish",
"watch": "pack-up watch",
"watch:link": "strapi-plugin watch:link",
"eslint": "eslint --max-warnings=0 './**/*.{js,jsx,ts,tsx}'",
"eslint:fix": "eslint --fix './**/*.{js,jsx,ts,tsx}'"
},
"peerDependencies": {
"@strapi/admin": "^5.0.0",
"@strapi/design-system": "^2.0.0",
"@strapi/icons": "^2.0.0",
"@strapi/strapi": "^5.0.0",
"@strapi/utils": "^5.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"react-router-dom": "^6.0.0",
"styled-components": "^6.0.0"
},
"devDependencies": {
"@strapi/admin": "^5.0.0",
"@strapi/design-system": "^2.0.0",
"@strapi/icons": "^2.0.0",
"@strapi/pack-up": "^5.0.0",
"@strapi/sdk-plugin": "^5.0.0",
"@strapi/strapi": "^5.0.0",
"@strapi/utils": "^5.0.0",
"@types/koa": "^2.15.0",
"@types/lodash": "^4",
"@types/qs": "^6",
"@types/react-copy-to-clipboard": "^5.0.7",
"eslint": "^8.57.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.0.0",
"styled-components": "^6.0.0",
"yalc": "^1.0.0-pre.53"
},
"dependencies": {
"formik": "^2.4.0",
"lodash": "^4.17.21",
"qs": "^6.14.2",
"react-copy-to-clipboard": "^5.1.0",
"react-intl": "^6.4.1",
"react-query": "^3.39.3",
"yup": "^0.32.9"
},
"author": {
"name": "Boaz Poolman",
"email": "boaz@pluginpal.io",
"url": "https://github.com/boazpoolman"
},
"maintainers": [
{
"name": "Boaz Poolman",
"email": "boaz@pluginpal.io",
"url": "https://github.com/boazpoolman"
}
],
"bugs": {
"url": "https://github.com/pluginpal/strapi-webtools/issues"
},
"homepage": "https://www.pluginpal.io/plugin/webtools",
"repository": {
"type": "git",
"url": "git://github.com/pluginpal/strapi-webtools.git"
},
"engines": {
"node": ">=18.x.x <=22.x.x",
"npm": ">=6.0.0"
},
"license": "MIT"
}