-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 980 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 980 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
{
"name": "idlegames",
"version": "1.0.587",
"description": "IdleGames PWA build tooling and deployment scripts.",
"author": "Timeless Prototype",
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"copy-fonts": "mkdir -p assets/fonts/dseg7 && cp node_modules/@fontsource/dseg7/files/* assets/fonts/dseg7/",
"build": "npm run copy-fonts && node scripts/build-sw.mjs",
"clean": "node scripts/build-sw.mjs --clean",
"test": "node --test tests/microcity-traffic.test.js tests/microcity-vehicle-state.test.js",
"serve": "npm run build && npx http-server dist -p 4173"
},
"dependencies": {
"@fontsource/dseg7": "^4.5.4",
"@fontsource/inter": "^5.0.8",
"@huggingface/transformers": "3.8.1",
"jsqr": "^1.4.0",
"qrious": "^4.0.2",
"three": "^0.184.0"
},
"devDependencies": {
"http-server": "^14.1.1"
},
"overrides": {
"follow-redirects": "^1.16.0"
}
}