-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 921 Bytes
/
package.json
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
{
"name": "shelf-client-js-sdk",
"version": "1.0.0",
"dependencies": {
"uuid": "^9.0.0"
},
"main": "./src/index.js",
"type": "module",
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"build:dev": "rollup -c --environment NODE_ENV:development -w",
"build:prod": "rollup -c --environment NODE_ENV:production -w",
"watch": "rollup -c -w"
},
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/shelf-cms/shelf-client-js-sdk.git"
},
"bugs": {
"url": "https://github.com/shelf-cms/shelf-client-js-sdk/issues"
},
"homepage": "https://github.com/shelf-cms/shelf-client-js-sdk#readme",
"description": ""
}