forked from jvalecillos/js13k-rollup-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.53 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
{
"name": "js13k-rollup-starter",
"version": "0.1.0",
"description": "Rollup boilerplate for js13k",
"main": "src/index.ts",
"scripts": {
"start": "rollup -c -w",
"build": "run-s build:*",
"build:js": "rollup -c",
"build:html": "type dist/index.dist.html | html-inline -b dist | html-minifier -c html-minifier.json -o dist/index.html",
"build:zip": "7z a -mx=9 -m0=lzma -mfb=64 -md=32m dist/game.zip dist/index.dist.html dist/main.min.js dist/main.min.css dist/assets/*.png",
"build:zip-size": "node zip-size.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jose Valecillos",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.8",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"eslint": "^7.32.0",
"html-inline": "^1.2.0",
"html-minifier": "^4.0.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.56.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-copy-assets": "^2.0.3",
"rollup-plugin-generate-html-template": "^1.7.0",
"rollup-plugin-kontra": "^1.0.1",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-minify-html": "^0.1.2",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-zip": "^1.0.2",
"ttypescript": "^1.5.12"
},
"dependencies": {
"kontra": "^8.0.0",
"typescript": "^4.3.5",
"zzfx": "^1.1.8"
}
}