mirror of
https://github.com/stablyai/orca.git
synced 2026-09-21 16:02:20 +00:00
docs/site: bump next 16.2.1 -> 16.3.4 (with eslint-config-next) and vercel 50.37.0 -> 59.11.1, then refresh transitives. The 16.3.x jump is required: 16.2.x hard-pins the vulnerable postcss@8.4.31 and sharp@^0.34.5, while 16.3.x pins postcss@8.5.23 and sharp@^0.35.4. Five packages are exact-pinned by vercel's own subpackages, so they get scoped overrides. Scoped rather than blanket because a bare undici override would drag the 6.x/7.x consumers in the tree down to 5.x. mobile: bump browserslist 4.28.2 -> 4.28.8. Two alerts stay open, both in mobile: - decode-uri-component@0.2.2 (#285). An override to 0.5.0 breaks the tree: 0.5.0 is ESM-only with a default export, but query-string@7.1.3 is CJS and does `require('decode-uri-component')`, so parse() throws "decodeComponent is not a function" and takes URL parsing in expo-router and @react-navigation/core with it. Both pin query-string@^7.1.3; the fix has to come from upstream moving to query-string 8+. - image-size@1.2.1 (#179, #180) via metro. No patched version exists on any release line, so there is nothing to override to. Verified: docs/site build, tests, lint, tsc and frozen install; mobile typecheck, 3985 tests and frozen install.
59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"name": "@orca/docs",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Open-source Orca product documentation site (https://www.onorca.dev/docs)",
|
|
"scripts": {
|
|
"dev": "next dev --port 3004",
|
|
"build": "next build",
|
|
"start": "next start --port 3004",
|
|
"lint": "eslint",
|
|
"test": "node --test tests/*.test.mjs",
|
|
"postinstall": "fumadocs-mdx",
|
|
"prebuild": "fumadocs-mdx"
|
|
},
|
|
"dependencies": {
|
|
"clsx": "^2.1.1",
|
|
"fumadocs-core": "^16.8.4",
|
|
"fumadocs-mdx": "^14.3.1",
|
|
"fumadocs-ui": "^16.8.4",
|
|
"lucide-react": "^1.6.0",
|
|
"next": "16.3.4",
|
|
"react": "19.2.4",
|
|
"react-dom": "19.2.4",
|
|
"tailwind-merge": "^3.5.0",
|
|
"tw-animate-css": "^1.4.0",
|
|
"zod": "^4"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/mdx": "^2.0.13",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.3.4",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5",
|
|
"vercel": "59.11.1"
|
|
},
|
|
"engines": {
|
|
"node": "22.x"
|
|
},
|
|
"packageManager": "pnpm@10.24.0",
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"esbuild",
|
|
"sharp",
|
|
"unrs-resolver"
|
|
],
|
|
"overrides": {
|
|
"@vercel/fun>tar": "7.5.22",
|
|
"@vercel/fun>@tootallnate/once": "2.0.1",
|
|
"@vercel/node>undici": "5.29.0",
|
|
"@vercel/python-analysis>js-yaml": "4.3.2",
|
|
"@vercel/python-analysis>minimatch": "10.2.6"
|
|
}
|
|
}
|
|
}
|