-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.54 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "svg-path-helper",
"version": "1.0.0",
"description": "Work in progress",
"main": "src/js/svg-path-helper.js",
"type": "module",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"zip": "cd ./build && zip -r ../build.zip * && cd ..",
"release": "npm run build && npm run zip",
"deploy": "cross-env MODE=deploy rollup -c"
},
"build": {
"input": {
"path": {
"js": "src/js/svg-path-helper.js",
"css": "src/css/svg-path-helper.css",
"demoJs": "demo/js/main.js",
"demoCss": "demo/css/style.css"
}
},
"output": {
"name": "svg-path-helper",
"path": "build/",
"demoPath": "demo/",
"demoJSName": "main",
"demoCSSName": "style"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/o0sh4d0w0o/svg-path-helper.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/o0sh4d0w0o/svg-path-helper/issues"
},
"homepage": "https://github.com/o0sh4d0w0o/svg-path-helper#readme",
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"cross-env": "^7.0.3",
"rollup": "^4.1.4",
"rollup-plugin-postcss": "^4.0.2"
},
"dependencies": {
"@rollup/plugin-replace": "^5.0.4"
}
}