Browser reference stack for PSX-era third-person adventure: fixed cameras, inventory puzzles, Box3D physics, host-authoritative P2P co-op, and a modular character harness. Ships the Ashgrove Precinct Level 1 investigation demo with a full cast and nine linked rooms.
27 lines
611 B
JSON
27 lines
611 B
JSON
{
|
|
"name": "@psx/server",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"start": "tsx src/index.ts",
|
|
"build": "tsc -p tsconfig.json --noEmit false --outDir dist",
|
|
"typecheck": "tsc -p tsconfig.json",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@hono/node-server": "^1.19.7",
|
|
"@psx/shared": "workspace:*",
|
|
"hono": "^4.12.32",
|
|
"ws": "^8.21.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.10.1",
|
|
"@types/ws": "^8.18.1",
|
|
"tsx": "^4.23.1",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.1.10"
|
|
}
|
|
}
|