- next 16.2.7 -> 16.2.6 in both apps. 16.2.7 regresses Turbopack dev route matching for API routes nested below a dynamic segment (probed in the private repo: /api/items/[id]/fork, /api/scenes/[id]/events 404 with the router's HTML not-found; production builds unaffected; bisected 16.2.6 good / 16.2.7 bad). 16.2.6 carries all the 16.2.5/16.2.6 security fixes — only the bugfix backports are forgone. - Remove @react-three/uikit-lucide from @pascal-app/editor dependencies: zero imports in this repo or private-editor; dead weight in every npm consumer's install. - Pin @visual-json/react "latest" -> "^0.4.0" (current resolution; "latest" in a published package's deps is unreproducible and was inconsistent with private-editor's ^0.4.0). - Add root override three: 0.184.0, mirroring private-editor's dedupe — drops the nested stats-gl three@0.170.0 so the lockfile resolves a single three (the stated single-instance invariant now holds here too). Verified: build, check-types, biome check, 931 package tests green; lockfile resolves one next (16.2.6) and one three (0.184.0); oxide/lightningcss optionalDependency pins still match resolutions. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"name": "ifc-converter-app",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"predev": "node scripts/copy-web-ifc-wasm.mjs",
|
|
"prebuild": "node scripts/copy-web-ifc-wasm.mjs",
|
|
"postinstall": "node scripts/copy-web-ifc-wasm.mjs",
|
|
"dev": "next dev --port 3003",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "biome lint",
|
|
"check-types": "next typegen && tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@pascal-app/core": "*",
|
|
"@pascal-app/ifc-converter": "*",
|
|
"@pascal-app/nodes": "*",
|
|
"@pascal-app/viewer": "*",
|
|
"lucide-react": "^1.7.0",
|
|
"@react-three/drei": "^10.7.7",
|
|
"@react-three/fiber": "^9.5.0",
|
|
"@tailwindcss/postcss": "^4.2.1",
|
|
"clsx": "^2.1.1",
|
|
"next": "16.2.6",
|
|
"postcss": "^8.5.6",
|
|
"react": "^19.2.4",
|
|
"react-dom": "^19.2.4",
|
|
"tailwind-merge": "^3.5.0",
|
|
"tailwindcss": "^4.2.1",
|
|
"three": "^0.184.0",
|
|
"web-ifc": "^0.0.77",
|
|
"zod": "^4.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@pascal/typescript-config": "*",
|
|
"@types/node": "^22.19.12",
|
|
"@types/react": "^19.2.2",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@types/three": "^0.184.0",
|
|
"typescript": "6.0.3"
|
|
}
|
|
}
|