Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,7 @@ __smoketest.ts
storybook-static
/.next-stress
/scripts/stress/results/

# Local a11y/e2e iteration builds (PLAYWRIGHT_PORT=3001 + NEXT_DIST_DIR=.next-e2e,
# so the suite can run alongside a long-lived `next dev` holding :3000 and .next)
/.next-e2e
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,31 +39,32 @@
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"better-sqlite3": "^12.11.1",
"dompurify": "3.4.11",
"dompurify": "3.4.12",
"echarts": "^6.1.0",
"marked": "^18.0.5",
"next": "16.2.9",
"next": "16.2.11",
"next-intl": "4.13.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"server-only": "^0.0.1",
"tesseract.js": "^7.0.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@biomejs/biome": "2.5.2",
"@playwright/test": "^1.61.1",
"@storybook/addon-a11y": "^10.4.6",
"@storybook/addon-docs": "^10.4.6",
"@storybook/nextjs": "^10.4.6",
"@tauri-apps/cli": "^2.11.4",
"@types/better-sqlite3": "^7.6.9",
"@types/node": "^26.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"cross-env": "^10.1.0",
"storybook": "^10.4.6",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"ultracite": "7.8.4",
"storybook": "^10.4.6",
"@storybook/nextjs": "^10.4.6",
"@storybook/addon-a11y": "^10.4.6",
"@storybook/addon-docs": "^10.4.6"
"ultracite": "7.8.4"
}
}
395 changes: 218 additions & 177 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ allowBuilds:
# transitively at 7.29.0 (next > styled-jsx > @babel/core), which
# `pnpm audit --prod` rejects for GHSA-4x5r-pxfx-6jf8 (arbitrary file
# read via a sourceMappingURL comment, fixed in 7.29.1).
#
# `sharp` is forced to the patched 0.35 line. Next (even 16.2.11) still
# pins it transitively at ^0.34.5 (next > sharp, used by the image
# optimizer), which `pnpm audit --prod` rejects for GHSA-f88m-g3jw-g9cj
# (libvips CVE-2026-33327/-33328/-35590/-35591, fixed in sharp 0.35.0).
# Drop this once Next's own range moves to >=0.35.
overrides:
postcss: ^8.5.12
'@babel/core': ^7.29.1
sharp: ^0.35.0
Loading
Loading