fix(webui): pin frontend deps for CI check:pinned-deps
Some checks failed
CI / build-check-test (push) Has been cancelled

Use exact versions in webui frontend package.json to satisfy the
monorepo pinned dependency policy enforced by GitHub Actions.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
root
2026-05-22 20:43:08 +08:00
parent 0a91cc99d0
commit 092279126b
2 changed files with 24 additions and 25 deletions

View File

@@ -8,21 +8,20 @@
"name": "sproutclaw-webui-frontend",
"version": "0.0.0",
"dependencies": {
"highlight.js": "^11.11.1",
"marked": "^15.0.12",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.6.2"
"highlight.js": "11.11.1",
"marked": "15.0.12",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-router-dom": "7.15.1"
},
"devDependencies": {
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.5.2",
"sharp": "^0.34.2",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-pwa": "^1.0.0",
"workbox-window": "^7.3.0"
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "4.7.0",
"sharp": "0.34.5",
"typescript": "5.9.3",
"vite": "6.4.2",
"vite-plugin-pwa": "1.3.0"
}
},
"node_modules/@apideck/better-ajv-errors": {

View File

@@ -10,19 +10,19 @@
"preview": "vite preview"
},
"dependencies": {
"highlight.js": "^11.11.1",
"marked": "^15.0.12",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.6.2"
"highlight.js": "11.11.1",
"marked": "15.0.12",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-router-dom": "7.15.1"
},
"devDependencies": {
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.5.2",
"sharp": "^0.34.2",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-pwa": "^1.0.0"
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "4.7.0",
"sharp": "0.34.5",
"typescript": "5.9.3",
"vite": "6.4.2",
"vite-plugin-pwa": "1.3.0"
}
}