Files
pad/web/package.json
dependabot[bot] d89d624c56 chore(deps)(deps-dev): bump vitest from 4.1.11 to 5.0.0 in /web (#1277)
* chore(deps)(deps-dev): bump vitest from 4.1.11 to 5.0.0 in /web

Bumps [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) from 4.1.11 to 5.0.0.
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v5.0.0/packages/vitest)

---
updated-dependencies:
- dependency-name: vitest
  dependency-version: 5.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore: pin the repo's Node floor to 24 (TASK-2971)

vitest 5 declares `engines.node = "^22.12.0 || ^24.0.0 || >=26.0.0"`, so this
bump makes the Node version a thing the repo cares about rather than a detail of
whoever's box. Measured before Dave moved this machine's default: on Node 25.8.1
with `engine-strict=true`, `npm ci` against this branch failed outright —

    npm error notsup Required: {"node":"^22.12.0 || ^24.0.0 || >=26.0.0"}
    npm error notsup Actual:   {"node":"v25.8.1","npm":"11.11.0"}

— which takes out every make target whose chain reaches `npm ci`: web, build,
install, serve, web-check, check. That includes `make install`, the dev-server
refresh. CI was unaffected throughout, because `ci.yml` pins node-version 24;
the failure was only ever local, and it was invisible from CI by construction.

`24` matches what CI already pins, so the file documents the version the project
actually builds against rather than introducing a second opinion. It is not wired
into the workflows here — they name 24 explicitly and changing them to read this
file is a separate decision.

Verified against the MERGE RESULT of this branch and main, not the branch alone:
`npm ci` exits 0 under Node 24.21.0, and the suite is 152 files / 2332 tests
passing on vitest 5 — the same counts as main on vitest 4, which is the guard
against a suite that goes green by collecting less.

Claude-Session: https://claude.ai/code/session_01WS9QAnxk1gA3LBha3PvKVm

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: xarmian <xarmian@gmail.com>
2026-09-09 18:12:06 -04:00

82 lines
2.3 KiB
JSON

{
"name": "web",
"private": true,
"version": "0.0.1",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:install": "playwright install --with-deps chromium",
"check:tiptap-pins": "node scripts/check-tiptap-pins.mjs",
"audit:ci": "node scripts/ci-audit.mjs"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@sveltejs/adapter-auto": "^7.0.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.70.3",
"@sveltejs/vite-plugin-svelte": "^7.3.0",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/svelte": "^5.2.8",
"@types/d3-scale": "4.0.9",
"@types/qrcode": "^1.5.6",
"fake-indexeddb": "6.2.5",
"jsdom": "^29.1.1",
"marked": "^18.0.11",
"svelte": "^5.57.0",
"svelte-check": "^4.7.6",
"typescript": "^6.0.3",
"vite": "^8.2.2",
"vitest": "5.0.0"
},
"overrides": {
"cookie": "^0.7.2",
"linkify-it": "^5.0.2",
"markdown-it": "^14.3.0",
"layercake": {
"typescript": "$typescript"
}
},
"dependencies": {
"@dagrejs/dagre": "3.1.1",
"@tiptap/core": "3.31.3",
"@tiptap/extension-bubble-menu": "^3.31.3",
"@tiptap/extension-code-block-lowlight": "^3.31.3",
"@tiptap/extension-collaboration": "3.31.3",
"@tiptap/extension-collaboration-caret": "3.31.3",
"@tiptap/extension-link": "^3.22.5",
"@tiptap/extension-placeholder": "^3.31.3",
"@tiptap/extension-table": "^3.31.3",
"@tiptap/extension-task-item": "^3.31.3",
"@tiptap/extension-task-list": "^3.31.3",
"@tiptap/pm": "3.31.3",
"@tiptap/starter-kit": "^3.31.3",
"@tiptap/suggestion": "^3.31.3",
"@tiptap/y-tiptap": "3.0.9",
"3d-force-graph": "1.80.0",
"d3-scale": "4.0.2",
"diff": "^9.0.0",
"dompurify": "^3.4.14",
"idb": "^8.0.3",
"layercake": "10.0.3",
"lowlight": "^3.3.0",
"mermaid": "^11.17.2",
"minisearch": "7.2.0",
"qrcode": "^1.5.4",
"svelte-dnd-action": "^0.9.79",
"three-spritetext": "1.10.0",
"tiptap-markdown": "^0.9.0",
"y-protocols": "^1.0.7",
"yjs": "^13.6.32"
}
}