mirror of
https://github.com/PlayableIntelligence/game-creator.git
synced 2026-09-19 07:34:10 +08:00
91981b44d4
- Add crowd-dash: 3D neon city endless runner (Three.js) with particles, camera juice, synthwave audio, and death slow-motion - Rename examples/example-game → examples/asteroid-dodger - Enable agent teams in settings.json Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27 lines
751 B
JSON
27 lines
751 B
JSON
{
|
|
"name": "crowd-dash",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"test": "npx playwright test",
|
|
"test:headed": "npx playwright test --headed",
|
|
"test:ui": "npx playwright test --ui",
|
|
"test:update-snapshots": "npx playwright test --update-snapshots",
|
|
"verify": "node scripts/verify-runtime.mjs",
|
|
"validate": "node scripts/validate-architecture.mjs",
|
|
"iterate": "node scripts/iterate-client.js --url http://localhost:3000"
|
|
},
|
|
"dependencies": {
|
|
"three": "^0.183.0",
|
|
"@strudel/web": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"vite": "^7.3.1",
|
|
"@playwright/test": "^1.58.0",
|
|
"@axe-core/playwright": "^4.11.0"
|
|
}
|
|
}
|