mirror of
https://github.com/PlayableIntelligence/game-creator.git
synced 2026-09-19 07:34:10 +08:00
f1bcfeaa9f
Moves barn-defense tower defense game into examples/ directory alongside other example games. Adds game card to _site homepage. Sets Vite base path for GitHub Pages deployment. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
24 lines
569 B
JSON
24 lines
569 B
JSON
{
|
|
"name": "barn-defense",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"phaser": "^3.90.0",
|
|
"@strudel/web": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"vite": "^7.3.1",
|
|
"@playwright/test": "^1.58.0",
|
|
"@axe-core/playwright": "^4.11.0"
|
|
}
|
|
}
|