Files
gsd-framework/package.json
T
tiennm99 3e61fa2fd4 feat(01-01): create Vite project with TypeScript and Canvas
- 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>
2026-03-10 23:38:14 +07:00

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