Files
Clay Good e4e112d94f chore(deps): declare pnpm overrides only in pnpm-workspace.yaml (#1816)
The security overrides were declared twice: in pnpm-workspace.yaml, with
the advisory comments explaining each pin, and again under
package.json's pnpm.overrides. The copies are not additive — pnpm 10
uses package.json's block instead of the workspace list when both are
present — and Dependabot rewrites plain-name entries in package.json
whenever it bumps the same package. So a routine bump silently
displaces the pins that patch advisories, and fails the equality test
that guards them (#1812).

Keeps one declaration, in the file that carries the reasoning, and
asserts the mirror stays gone.

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
2026-09-09 17:47:22 +00:00

42 lines
1.3 KiB
JSON

{
"name": "@fission-ai/openspec-website",
"version": "0.0.0",
"private": true,
"description": "Documentation site for OpenSpec, built with Fumadocs and deployable to Cloudflare Pages.",
"scripts": {
"sync:docs": "node scripts/sync-docs.mjs",
"sync:docs:watch": "node --watch-path=../docs --watch-path=../docs-lab --watch-path=docs.sync.config.mjs --watch-preserve-output scripts/sync-docs.mjs",
"build": "pnpm run sync:docs && fumadocs-mdx && next build",
"dev": "pnpm run sync:docs && (pnpm run sync:docs:watch & next dev)",
"start": "serve out",
"types:check": "pnpm run sync:docs && fumadocs-mdx && next typegen && tsc --noEmit"
},
"dependencies": {
"beautiful-mermaid": "^1.1.3",
"fumadocs-core": "^16.15.5",
"fumadocs-mdx": "^15.3.1",
"fumadocs-ui": "^16.15.5",
"lucide-react": "^1.34.0",
"next": "16.3.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.1",
"@types/mdx": "^2.0.14",
"@types/node": "^26.3.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.7",
"postcss": "^8.5.28",
"serve": "^14.2.6",
"tailwindcss": "^4.3.1",
"typescript": "^6.0.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}