Files
rshtirmer 91981b44d4 feat: add crowd-dash example, rename example-game to asteroid-dodger
- 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>
2026-02-23 16:35:01 -05:00

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"
}
}