-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.19 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
{
"name": "cyoa",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"glob": "glob-module-file --pattern=adventure/**/*.svelte --format=es --pathPrefix=../ --importStar --exportWithPath=true --outputPath=cyoa/globbed_adventure.js",
"build": "npm run glob && rollup -c",
"watch:glob": "node cheap_watch.cjs adventure npm run glob",
"watch:build": "rollup -c -w",
"watch": "run-p watch:*",
"serve": "live-server --no-css-inject public",
"dev": "npm-run-all -s glob -p watch serve"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/TehShrike/cyoa-app.git"
},
"author": "TehShrike",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/TehShrike/cyoa-app/issues"
},
"homepage": "https://github.com/TehShrike/cyoa-app#readme",
"dependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"cheap-watch": "^1.0.4",
"glob-module-file": "^3.0.2",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.70.1",
"rollup-plugin-svelte": "^7.1.0",
"svelte": "^3.47.0",
"warg": "^2.1.0"
}
}