mirror of
https://github.com/Xevion/Pac-Man.git
synced 2026-01-31 08:25:06 -06:00
- Move WASM compilation from GitHub Actions into Docker build stages - Add emsdkVersion to package.json config as single source of truth - Implement cargo-chef for dependency caching in both WASM and server builds - Update .dockerignore to include packed game assets while excluding unpacked - Simplify deploy workflow by removing local WASM build steps
19 lines
314 B
JSON
19 lines
314 B
JSON
{
|
|
"name": "pacman",
|
|
"type": "module",
|
|
"packageManager": "bun@^1.3.5",
|
|
"config": {
|
|
"emsdkVersion": "4.0.22"
|
|
},
|
|
"engines": {
|
|
"bun": ">=1.3.5"
|
|
},
|
|
"scripts": {
|
|
"preinstall": "npx only-allow bun"
|
|
},
|
|
"devDependencies": {
|
|
"ts-pattern": "^5.5.0",
|
|
"@logtape/logtape": "^0.8.0"
|
|
}
|
|
}
|