t2-mapper/package.json
2025-09-11 21:08:56 -07:00

37 lines
963 B
JSON

{
"name": "t2-mapper",
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "Brian Beck <exogen@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "next build && touch docs/.nojekyll",
"build:parser": "peggy mission.pegjs -o generated/mission.cjs",
"clean": "rimraf .next docs",
"deploy": "npm run build && git add -f docs && git commit -m \"Deploy\" && git push",
"find": "find public -iname",
"prebuild": "npm run clean",
"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"
}
}