-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.42 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "game-of-life",
"version": "1.0.0",
"description": "Game of Life",
"main": "gameoflife.js",
"scripts": {
"start": "serve -l 3010 dist",
"build": "rollup --config --sourcemap",
"buildall": "npm-run-all --parallel build generate",
"livereload": "rollup --config rollup-livereload.config.mjs --sourcemap --watch",
"watch": "npm-run-all --parallel start livereload",
"deploy": "npm run build && npm run brotli && npm run sw && ./deploy.sh",
"generate": "node src/lexgen/generate.js",
"wasm": "emcc -Os src/wasm/gol.c -o dist/gol.wasm -s EXPORTED_FUNCTIONS='[\"_gol\"]' -s INITIAL_MEMORY=4MB -s TOTAL_MEMORY=4MB -s TOTAL_STACK=1MB",
"sw": "node src/sw/generate.js",
"brotli": "npx brotli-cli compress dist/*.js dist/*.css",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edwinm/game-of-life.git"
},
"author": {
"name": "Edwin Martin",
"email": "edwin@bitstorm.org",
"url": "https://bitstorm.org/"
},
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/edwinm/game-of-life/issues"
},
"homepage": "https://github.com/edwinm/game-of-life#readme",
"engines": {
"node": ">=24"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.3.0",
"@types/google.analytics": "0.0.46",
"brotli-cli": "^2.1.1",
"carbonium": "^1.3.0",
"cuprum": "^0.2.0",
"google-closure-compiler": "^20260401.0.0",
"html-entities": "^2.6.0",
"husky": "^9.1.7",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"pretty-quick": "^4.2.2",
"rollup": "^4.60.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-node-resolve": "^5.2.0",
"sanitize-filename": "^1.6.4",
"serve": "^14.2.6",
"string-strip-html": "^13.5.3",
"tslib": "^2.8.1",
"typescript": "^6.0.2",
"web-component-decorator": "^1.2.0",
"workbox-build": "^7.4.0"
},
"overrides": {
"serialize-javascript": "^7.0.5"
},
"dependencies": {
"@rollup/plugin-terser": "^1.0.0",
"@types/offscreencanvas": "^2019.7.3",
"canvas": "^3.2.3",
"npm-check-updates": "^20.0.0"
}
}