mirror of
https://github.com/tiennm99/gsd-framework.git
synced 2026-05-26 22:01:05 +00:00
3e61fa2fd4
- Initialize Vite project with vanilla-ts configuration - Add TypeScript with strict mode enabled - Configure Vitest for testing - Create index.html with Canvas element - Add main.ts entry point with canvas setup - Add setup tests for project dependencies Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
32 lines
851 B
JSON
32 lines
851 B
JSON
{
|
|
"name": "gsd-framework",
|
|
"version": "1.0.0",
|
|
"description": "Pikachu Match - A tile-matching puzzle game built with Vite + TypeScript + Canvas",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"test": "vitest",
|
|
"test:run": "vitest run"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/tiennm99/gsd-framework.git"
|
|
},
|
|
"keywords": ["game", "puzzle", "canvas", "typescript", "vite"],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/tiennm99/gsd-framework/issues"
|
|
},
|
|
"homepage": "https://github.com/tiennm99/gsd-framework#readme",
|
|
"devDependencies": {
|
|
"@types/node": "^25.4.0",
|
|
"@vitest/coverage-v8": "^4.0.18",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^7.3.1",
|
|
"vitest": "^4.0.18"
|
|
}
|
|
}
|