mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 03:55:55 +00:00
* fix: bump dependencies to resolve Dependabot security alerts Python: - aiohttp: >=3.11.18 → >=3.13.4 (duplicate Host headers, header injection, redirect leak, multipart DoS) - cryptography: >=44.0.3 → >=46.0.7 (buffer overflow with non-contiguous buffers) - pillow: >=11.2.1 → >=12.2.0 (FITS GZIP decompression bomb, HIGH) - langchain-text-splitters: >=0.0.1 → >=1.1.2 (SSRF redirect bypass) - langchain-core: add >=1.2.28 (incomplete f-string validation) - langsmith: add >=0.7.31 (streaming token redaction bypass) - python-multipart: add >=0.0.26 (multipart DoS) - Mako: add >=1.3.11 (path traversal) - pytest: >=8.4.1 → >=9.0.3 (tmpdir handling) - uv: >=0.7.11 → >=0.11.6 (arbitrary file deletion) JavaScript (web/): - vite: ^8.0.3 → ^8.0.5 (fs.deny bypass, WebSocket file read, path traversal, HIGH) - axios: ^1.13.5 → ^1.15.0 (cloud metadata exfiltration) - lodash: ^4.17.23 → ^4.18.0 (code injection via _.template, prototype pollution, HIGH) * fix: update pnpm-lock.yaml for bumped dependencies
114 lines
3.4 KiB
JSON
114 lines
3.4 KiB
JSON
{
|
|
"name": "web",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint .",
|
|
"format": "prettier --write ."
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"overrides": {
|
|
"@radix-ui/react-focus-scope": "1.1.7"
|
|
},
|
|
"dependencies": {
|
|
"@dnd-kit/core": "^6.3.1",
|
|
"@dnd-kit/sortable": "^10.0.0",
|
|
"@dnd-kit/utilities": "^3.2.2",
|
|
"@hookform/resolvers": "^5.0.1",
|
|
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
"@radix-ui/react-avatar": "^1.1.11",
|
|
"@radix-ui/react-checkbox": "^1.3.1",
|
|
"@radix-ui/react-collapsible": "^1.1.12",
|
|
"@radix-ui/react-context-menu": "^2.2.15",
|
|
"@radix-ui/react-dialog": "^1.1.14",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
"@radix-ui/react-hover-card": "^1.1.13",
|
|
"@radix-ui/react-label": "^2.1.6",
|
|
"@radix-ui/react-popover": "^1.1.14",
|
|
"@radix-ui/react-progress": "^1.1.8",
|
|
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
"@radix-ui/react-select": "^2.2.4",
|
|
"@radix-ui/react-separator": "^1.1.8",
|
|
"@radix-ui/react-slot": "^1.2.3",
|
|
"@radix-ui/react-switch": "^1.2.4",
|
|
"@radix-ui/react-tabs": "^1.1.11",
|
|
"@radix-ui/react-toggle": "^1.1.8",
|
|
"@radix-ui/react-toggle-group": "^1.1.9",
|
|
"@radix-ui/react-tooltip": "^1.2.7",
|
|
"@tailwindcss/postcss": "^4.1.5",
|
|
"@tanstack/react-table": "^8.21.3",
|
|
"@vitejs/plugin-react": "^6.0.1",
|
|
"axios": "^1.15.0",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"highlight.js": "^11.11.1",
|
|
"i18next": "^25.1.2",
|
|
"i18next-browser-languagedetector": "^8.1.0",
|
|
"input-otp": "^1.4.2",
|
|
"lodash": "^4.18.0",
|
|
"lucide-react": "^0.507.0",
|
|
"postcss": "^8.5.3",
|
|
"qrcode": "^1.5.4",
|
|
"react": "19.2.1",
|
|
"react-dom": "19.2.1",
|
|
"react-hook-form": "^7.56.3",
|
|
"react-i18next": "^15.5.1",
|
|
"react-markdown": "^10.1.0",
|
|
"react-photo-view": "^1.2.7",
|
|
"react-router-dom": "^7.14.0",
|
|
"react-syntax-highlighter": "^16.1.0",
|
|
"recharts": "2.15.4",
|
|
"rehype-autolink-headings": "^7.1.0",
|
|
"rehype-highlight": "^7.0.2",
|
|
"rehype-raw": "^7.0.0",
|
|
"rehype-sanitize": "^6.0.0",
|
|
"rehype-slug": "^6.0.0",
|
|
"remark-gfm": "^4.0.1",
|
|
"sonner": "^2.0.3",
|
|
"tailwind-merge": "^3.2.0",
|
|
"tailwindcss": "^4.1.5",
|
|
"uuidjs": "^5.1.0",
|
|
"vite": "^8.0.5",
|
|
"zod": "^3.24.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/debug": "^4.1.12",
|
|
"@types/estree": "^1.0.8",
|
|
"@types/estree-jsx": "^1.0.5",
|
|
"@types/hast": "^3.0.4",
|
|
"@types/lodash": "^4.17.16",
|
|
"@types/mdast": "^4.0.4",
|
|
"@types/ms": "^2.1.0",
|
|
"@types/node": "^20",
|
|
"@types/qrcode": "^1.5.6",
|
|
"@types/react": "~19.2.7",
|
|
"@types/react-dom": "~19.2.3",
|
|
"@types/react-syntax-highlighter": "^15.5.13",
|
|
"@types/unist": "^3.0.3",
|
|
"eslint": "^9",
|
|
"eslint-config-prettier": "^10.1.2",
|
|
"eslint-plugin-prettier": "^5.2.6",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
"lint-staged": "^15.5.1",
|
|
"prettier": "^3.5.3",
|
|
"tw-animate-css": "^1.2.9",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.31.1"
|
|
},
|
|
"packageManager": "pnpm@8.9.2+sha512.b9d35fe91b2a5854dadc43034a3e7b2e675fa4b56e20e8e09ef078fa553c18f8aed44051e7b36e8b8dd435f97eb0c44c4ff3b44fc7c6fa7d21e1fac17bbe661e",
|
|
"pnpm": {
|
|
"overrides": {
|
|
"minimatch": "3.1.3"
|
|
}
|
|
}
|
|
}
|