t2-mapper/package.json
2025-11-12 20:00:14 -08:00

37 lines
1 KiB
JSON

{
"name": "t2-mapper",
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "Brian Beck <exogen@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"build:parser": "peggy mission.pegjs -o generated/mission.cjs",
"build": "next build && touch docs/.nojekyll",
"clean": "rimraf .next",
"deploy": "npm run build && git add -f docs && git commit -m \"Deploy\" && git push",
"postbuild": "git checkout -- public/base",
"prebuild": "npm run clean && git checkout -- docs && rimraf public/base && mv docs/base public/",
"start": "next dev"
},
"dependencies": {
"@react-three/fiber": "^9.3.0",
"next": "^15.5.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"three": "^0.180.0",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@types/node": "24.3.1",
"@types/react": "19.1.12",
"@types/three": "^0.180.0",
"@types/unzipper": "^0.10.11",
"peggy": "^5.0.6",
"rimraf": "^6.0.1",
"tsx": "^4.20.5",
"typescript": "5.9.2"
}
}