27 lines
814 B
JSON
27 lines
814 B
JSON
{
|
|
"name": "@esengine/demos",
|
|
"version": "1.0.18",
|
|
"private": true,
|
|
"description": "Demo tests for ESEngine modules documentation",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "tsx src/index.ts",
|
|
"test:timer": "tsx src/timer.demo.ts",
|
|
"test:fsm": "tsx src/fsm.demo.ts",
|
|
"test:pathfinding": "tsx src/pathfinding.demo.ts",
|
|
"test:procgen": "tsx src/procgen.demo.ts",
|
|
"test:spatial": "tsx src/spatial.demo.ts"
|
|
},
|
|
"dependencies": {
|
|
"@esengine/timer": "workspace:*",
|
|
"@esengine/fsm": "workspace:*",
|
|
"@esengine/pathfinding": "workspace:*",
|
|
"@esengine/procgen": "workspace:*",
|
|
"@esengine/spatial": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|