-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.01 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.01 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
{
"name": "aelith",
"description": "",
"keywords": [],
"private": true,
"author": "dragoncoder047",
"main": "src/main.ts",
"scripts": {
"build:data": "python3 scripts/build_datapack.py",
"build:js": "pnpm bun scripts/build.mjs",
"build:clean": "rm -rf build/ && mkdir build",
"build": "./scripts/build_oneshot.sh",
"dev:build:js": "pnpm bun scripts/build.mjs -w",
"dev:build:data": "pnpm nodemon -e yaml,json,png,woff,otf,ttf,txt,glsl,wav,ogg,mp3 -i build --exec \"pnpm build:data\"",
"dev:serve": "python3 -m http.server",
"build:minified": "pnpm build:clean && pnpm build --minify",
"dev": "pnpm run \"/^dev:.*/\"",
"lint": "pnpm tsc && python3 scripts/lint_strings.py",
"linecount": "IFS=$'\\n'; for f in `git ls-files -- '[^.]**.*'`; do enca \"$f\" -L none | grep -ie \"UTF-8\\|ASCII\" -q && echo \"$f\" || true; done | xargs wc -l",
"showip": "ifconfig | grep \"inet \" | grep -Fv 127.0.0.1 | awk '{print $2}'",
"test": "pnpm bun test --todo",
"test:watch": "pnpm test --watch"
},
"license": "AGPL-3.0-only",
"devDependencies": {
"@types/bun": "^1.3.9",
"bun": "^1.3.9",
"esbuild": "^0.25.0",
"esbuild-plugin-glsl": "^1.4.1",
"nodemon": "^3.1.10",
"stacktrace-js": "^2.0.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@r47onfire/kaplay-gamepad-haptics": "^0.1.0",
"kaplay": "github:dragoncoder047/kaplay#25a76d0647adffc0d87273fd78f64c747efec0ea",
"kaplay-lighting": "github:dragoncoder047/kaplay-lighting#943a1f2e5b0f7ad5915371087d5d0928223ef35c",
"lib0": "^0.2.117",
"semver": "^7.7.4",
"y-indexeddb": "^9.0.12",
"y-webrtc": "^10.3.0",
"yjs": "^13.6.29",
"zzfx": "^1.3.0"
},
"type": "module",
"pnpm": {
"onlyBuiltDependencies": [
"bun",
"esbuild",
"kaplay",
"kaplay-lighting"
]
}
}