-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 785 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 785 Bytes
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
{
"name": "controller-animation",
"version": "1.0.0",
"svelte": "src/index.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"prepare": "yarn build",
"dev": "concurrently \"rollup -c -w\" \"sirv dist --dev\""
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"concurrently": "^5.1.0",
"rollup": "^2.6.1",
"rollup-plugin-livereload": "^1.2.0",
"rollup-plugin-svelte": "^5.2.1",
"sirv-cli": "^0.4.5",
"svelte": "^3.20.1"
},
"keywords": [
"svelte"
],
"repository": {
"type": "git",
"url": "git+https://git@github/shvarpa/ControllerAnimation.git"
},
"private": false,
"files": [
"src",
"dist"
]
}