t2-mapper/package.json

51 lines
1.5 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:manifest": "tsx scripts/generate-manifest.ts -o public/manifest.json",
"build:parser": "peggy TorqueScript.pegjs -o generated/TorqueScript.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-29 17:08:20 +00:00
"format": "prettier --write .",
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-11-29 17:08:20 +00:00
"start": "next dev --turbopack",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
2025-09-11 23:48:23 +00:00
},
"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",
"ignore": "^7.0.5",
2025-11-26 14:04:45 +00:00
"lodash.orderby": "^4.6.0",
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": {
2025-11-26 14:04:45 +00:00
"@types/lodash.orderby": "^4.6.9",
2025-09-11 23:48:23 +00:00
"@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-11-29 17:08:20 +00:00
"prettier": "^3.7.1",
2025-09-11 23:56:30 +00:00
"rimraf": "^6.0.1",
2025-09-11 23:48:23 +00:00
"tsx": "^4.20.5",
2025-11-29 17:08:20 +00:00
"typescript": "5.9.2",
"vitest": "^4.0.14"
2025-09-11 23:48:23 +00:00
}
}