fisrt commit

This commit is contained in:
2026-01-17 11:49:36 +03:00
commit b2dfe51b9f
5379 changed files with 4408602 additions and 0 deletions

39
package.json Normal file
View File

@ -0,0 +1,39 @@
{
"name": "roguelite-platformer",
"version": "0.1.0",
"type": "module",
"description": "Hardcore roguelite platformer with procedural generation",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write src/",
"check": "npm run typecheck && npm run lint"
},
"keywords": [
"game",
"phaser",
"platformer",
"roguelite"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.53.0",
"vite": "^5.0.12"
},
"dependencies": {
"phaser": "^3.70.0"
}
}