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

View File

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