t2-mapper/package.json

41 lines
1.2 KiB
JSON
Raw Normal View History

2025-09-11 23:48:23 +00:00
{
"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",
2025-11-13 04:00:14 +00:00
"build": "next build && touch docs/.nojekyll",
2025-11-12 05:37:45 +00:00
"clean": "rimraf .next",
2025-09-11 23:56:30 +00:00
"deploy": "npm run build && git add -f docs && git commit -m \"Deploy\" && git push",
2025-11-12 05:37:45 +00:00
"postbuild": "git checkout -- public/base",
2025-11-13 04:00:14 +00:00
"prebuild": "npm run clean && git checkout -- docs && rimraf public/base && mv docs/base public/",
2025-09-11 23:48:23 +00:00
"start": "next dev"
},
"dependencies": {
2025-11-14 06:55:58 +00:00
"@react-three/drei": "^10.7.6",
2025-09-11 23:48:23 +00:00
"@react-three/fiber": "^9.3.0",
"@react-three/postprocessing": "^3.0.4",
2025-11-14 06:55:58 +00:00
"@tanstack/react-query": "^5.90.8",
2025-09-11 23:48:23 +00:00
"next": "^15.5.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
2025-11-15 03:05:24 +00:00
"react-error-boundary": "^6.0.0",
2025-09-11 23:48:23 +00:00
"three": "^0.180.0",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@types/node": "24.3.1",
"@types/react": "^19.2.4",
2025-09-11 23:48:23 +00:00
"@types/three": "^0.180.0",
"@types/unzipper": "^0.10.11",
2025-09-12 04:08:56 +00:00
"peggy": "^5.0.6",
2025-09-11 23:56:30 +00:00
"rimraf": "^6.0.1",
2025-09-11 23:48:23 +00:00
"tsx": "^4.20.5",
"typescript": "5.9.2"
}
}