mirror of
https://github.com/tiennm99/gsd-framework.git
synced 2026-05-27 20:25:21 +00:00
004664e2df
Archive and finalize v1.0 milestone and planning artifacts: add MILESTONES.md, milestone archives (v1.0-ROADMAP.md, v1.0-REQUIREMENTS.md), verification and phase artifacts, and update phase/roadmap/project state to mark v1.0 MVP as shipped. Tidy PROJECT and ROADMAP to reflect shipped features and next steps, remove the old REQUIREMENTS.md (moved to milestone archive), and update STATE.md to show milestone completion. Minor code change: expose GridManager.events as public readonly to allow external subscribers. Package metadata: normalize keywords formatting and add an optional dependency entry in package.json for rollup native binary support.
41 lines
954 B
JSON
41 lines
954 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"
|
|
},
|
|
"optionalDependencies": {
|
|
"@rollup/rollup-linux-x64-gnu": "^4.59.0"
|
|
}
|
|
}
|