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": {
|
2025-11-30 19:44:47 +00:00
|
|
|
"build:manifest": "tsx scripts/generate-manifest.ts -o public/manifest.json",
|
|
|
|
|
"build:parser": "peggy TorqueScript.pegjs -o generated/TorqueScript.cjs",
|
2025-12-03 22:55:39 +00:00
|
|
|
"build": "next build --turbopack && 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-12-02 06:33:12 +00:00
|
|
|
"serve:static": "tsx scripts/serve-static.ts",
|
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-12-03 00:58:35 +00:00
|
|
|
"@ariakit/react": "^0.4.20",
|
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",
|
2025-11-14 11:10:26 +00:00
|
|
|
"@react-three/postprocessing": "^3.0.4",
|
2025-11-14 06:55:58 +00:00
|
|
|
"@tanstack/react-query": "^5.90.8",
|
2025-11-30 19:44:47 +00:00
|
|
|
"ignore": "^7.0.5",
|
2025-11-26 14:04:45 +00:00
|
|
|
"lodash.orderby": "^4.6.0",
|
2025-12-03 00:58:35 +00:00
|
|
|
"match-sorter": "^8.2.0",
|
2025-09-11 23:48:23 +00:00
|
|
|
"next": "^15.5.2",
|
2025-12-03 03:14:07 +00:00
|
|
|
"picomatch": "^4.0.3",
|
2025-09-11 23:48:23 +00:00
|
|
|
"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-12-02 06:33:12 +00:00
|
|
|
"@types/express": "^5.0.5",
|
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",
|
2025-12-03 03:14:07 +00:00
|
|
|
"@types/picomatch": "^4.0.2",
|
2025-11-14 07:41:10 +00:00
|
|
|
"@types/react": "^19.2.4",
|
2025-09-11 23:48:23 +00:00
|
|
|
"@types/three": "^0.180.0",
|
|
|
|
|
"@types/unzipper": "^0.10.11",
|
2025-12-02 06:33:12 +00:00
|
|
|
"express": "^5.2.0",
|
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-12-09 22:59:47 +00:00
|
|
|
"puppeteer": "^24.32.0",
|
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
|
|
|
}
|
|
|
|
|
}
|