18 lines
410 B
JSON
18 lines
410 B
JSON
{
|
|
"name": "genesis-frontend",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "node esbuild.config.mjs",
|
|
"watch": "node esbuild.config.mjs --watch",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "node --test tests/state.test.ts tests/ws.test.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.20.2",
|
|
"esbuild": "^0.24.0",
|
|
"typescript": "^5.6.0"
|
|
}
|
|
}
|