-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 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
{
"name": "strapi-plugin-duplicate-button",
"version": "2.0.0",
"description": "Adds a duplicate button to the edit view",
"strapi": {
"name": "duplicate-button",
"description": "Adds a duplicate button to the edit view",
"kind": "plugin",
"displayName": "Duplicate Button"
},
"peerDependencies": {
"@strapi/design-system": "^2.0.0-rc.10",
"@strapi/icons": "^2.0.0-rc.10",
"@strapi/strapi": "^5.0.0-rc.17",
"@strapi/utils": "^5.0.0-rc.17",
"react-intl": "6.6.2",
"react-router-dom": "6.22.3"
},
"author": {
"name": "Johannes Lauter"
},
"maintainers": [
{
"name": "Johannes Lauter"
}
],
"exports": {
"./strapi-admin": {
"source": "./admin/src/index.js",
"import": "./admin/dist/index.mjs",
"require": "./admin/dist/index.js",
"default": "./admin/dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rollup -c",
"prepublish": "npm run build"
},
"engines": {
"node": ">=18.0.0 <=20.x.x"
},
"license": "MIT",
"devDependencies": {
"@babel/preset-react": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-dynamic-import-vars": "^2.1.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3"
}
}