-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.03 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.03 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
107
108
109
110
111
{
"name": "webtools-addon-sitemap",
"version": "1.3.0",
"description": "Generate a highly customizable sitemap XML in Strapi CMS.",
"strapi": {
"name": "webtools-addon-sitemap",
"icon": "sitemap",
"displayName": "Webtools Sitemap",
"description": "Generate a highly customizable sitemap XML in Strapi CMS.",
"required": false,
"kind": "plugin",
"webtoolsAddon": true,
"addonName": "Sitemap"
},
"files": [
"dist",
"xsl",
"bin"
],
"bin": {
"strapi-sitemap": "./bin/strapi-sitemap"
},
"exports": {
"./strapi-admin": {
"source": "./admin/index.js",
"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"
},
"scripts": {
"build": "pack-up build && yalc push --publish",
"watch": "pack-up watch",
"watch:link": "strapi-plugin watch:link",
"develop:copy-files": "copyfiles -u 1 xsl/**/* ../../../playground/src/plugins/webtools-addon-sitemap/xsl/",
"eslint": "eslint --max-warnings=0 './**/*.{js,jsx,ts,tsx}'",
"eslint:fix": "eslint --fix './**/*.{js,jsx,ts,tsx}'"
},
"peerDependencies": {
"@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",
"redux": "*",
"strapi-plugin-webtools": "^1.4.0",
"styled-components": "^6.0.0"
},
"devDependencies": {
"@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/lodash": "^4",
"copyfiles": "^2.4.1",
"eslint": "^8.57.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6",
"styled-components": "^6",
"yalc": "^1.0.0-pre.53"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.3.0",
"immutable": "^3.8.2",
"lodash": "^4.17.21",
"react-intl": "^6.4.1",
"react-redux": "^8.1.1",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.3.0",
"sitemap": "^7.1.0",
"xml2js": "^0.5.0"
},
"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://github.com/pluginpal/strapi-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"
}