t2-mapper/package.json

71 lines
2.1 KiB
JSON
Raw Normal View History

2025-09-11 16:48:23 -07:00
{
"name": "t2-mapper",
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "Brian Beck <exogen@gmail.com>",
"license": "MIT",
"type": "module",
2025-12-29 20:02:54 -08:00
"packageManager": "npm@11.7.0",
2025-09-11 16:48:23 -07:00
"scripts": {
"build:manifest": "tsx scripts/generate-manifest.ts -o public/manifest.json",
"build:parser": "peggy TorqueScript.pegjs -o generated/TorqueScript.cjs",
"build": "next build",
2025-09-11 16:56:30 -07:00
"deploy": "npm run build && git add -f docs && git commit -m \"Deploy\" && git push",
2025-11-29 09:08:20 -08:00
"format": "prettier --write .",
2025-12-29 20:02:54 -08:00
"lint": "eslint .",
"postbuild": "git checkout -- public/base && touch docs/.nojekyll",
"prebuild": "git checkout -- docs && rimraf public/base && mv docs/base public/",
2025-12-01 22:33:12 -08:00
"serve:static": "tsx scripts/serve-static.ts",
2025-11-29 09:08:20 -08:00
"start": "next dev --turbopack",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
2025-09-11 16:48:23 -07:00
},
"dependencies": {
2026-03-02 22:57:58 -08:00
"@ariakit/react": "^0.4.21",
"@react-three/drei": "^10.7.7",
2026-03-02 22:57:58 -08:00
"@react-three/fiber": "^9.5.0",
"@tanstack/react-query": "^5.90.21",
"ignore": "^7.0.5",
2025-11-26 06:04:45 -08:00
"lodash.orderby": "^4.6.0",
2025-12-02 16:58:35 -08:00
"match-sorter": "^8.2.0",
2026-03-02 22:57:58 -08:00
"next": "^16.1.6",
"nipplejs": "^0.10.2",
2026-03-02 22:57:58 -08:00
"nuqs": "^2.8.9",
"picomatch": "^4.0.3",
2026-03-02 22:57:58 -08:00
"react": "^19.2.4",
"react-dom": "^19.2.4",
2025-12-29 20:02:54 -08:00
"react-error-boundary": "^6.0.1",
"react-icons": "^5.5.0",
2026-02-28 17:58:09 -08:00
"t2-demo-parser": "file:.yalc/t2-demo-parser",
"three": "^0.182.0",
"unzipper": "^0.12.3",
2026-03-02 22:57:58 -08:00
"zustand": "^5.0.11"
2025-09-11 16:48:23 -07:00
},
"devDependencies": {
2025-12-29 20:02:54 -08:00
"@eslint/js": "^9.39.2",
"@types/express": "^5.0.6",
2025-11-26 06:04:45 -08:00
"@types/lodash.orderby": "^4.6.9",
2025-09-11 16:48:23 -07:00
"@types/node": "24.3.1",
"@types/picomatch": "^4.0.2",
2026-03-02 22:57:58 -08:00
"@types/react": "^19.2.14",
"@types/three": "^0.182.0",
2025-09-11 16:48:23 -07:00
"@types/unzipper": "^0.10.11",
2025-12-29 20:02:54 -08:00
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.1",
"express": "^5.2.1",
2025-12-29 20:02:54 -08:00
"jiti": "^2.6.1",
2025-09-11 21:08:56 -07:00
"peggy": "^5.0.6",
"prettier": "^3.7.4",
"prettier-plugin-glsl": "^0.2.2",
2025-12-29 20:02:54 -08:00
"puppeteer": "^24.34.0",
"rimraf": "^6.1.2",
"tsx": "^4.21.0",
"typescript": "5.9.3",
2025-12-29 20:02:54 -08:00
"typescript-eslint": "^8.51.0",
2026-03-02 22:57:58 -08:00
"vitest": "^4.0.18"
2025-09-11 16:48:23 -07:00
}
}