Files
core2026/app/game-engine/package.json
T

22 lines
653 B
JSON

{
"name": "@sammo-ts/game-engine",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "tsdown -c ../../tsdown.config.ts -F @sammo-ts/game-engine",
"dev": "tsdown -c ../../tsdown.config.ts -F @sammo-ts/game-engine --watch",
"lint": "node -e \"console.log('lint not configured')\"",
"test": "vitest run --config vitest.config.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@sammo-ts/common": "workspace:*",
"@sammo-ts/logic": "workspace:*"
},
"devDependencies": {
"tsdown": "^0.18.3",
"vitest": "^4.0.16"
}
}