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
79 changes: 79 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# Dependabot configuration
#
# Enables automated dependency-update pull requests (security AND version) for
# every npm project in this repo. Prior to this file, only passive security
# ALERTS existed — no fix PRs were ever opened, so nested sub-projects
# (app/vue, docs, vscode-extension) silently accumulated vulnerabilities that
# root-level dependency updates never touched.
#
# Each `directory` is an independent npm project with its own lockfile.
# GitHub Actions workflow deps are updated too, so pinned action SHAs stay current.
version: 2
updates:
# Root CLI project (npm-shrinkwrap.json)
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
groups:
# Batch low-risk updates to reduce PR noise; majors still come individually.
minor-and-patch:
update-types:
- "minor"
- "patch"

# Vue web UI (app/vue/package-lock.json) — runtime deps, highest alert count
- package-ecosystem: "npm"
directory: "/app/vue"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
groups:
minor-and-patch:
update-types:
- "minor"
- "patch"

# VitePress documentation site (docs/package-lock.json)
- package-ecosystem: "npm"
directory: "/docs"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
groups:
minor-and-patch:
update-types:
- "minor"
- "patch"

# MCP server (mcp-server/npm-shrinkwrap.json)
- package-ecosystem: "npm"
directory: "/mcp-server"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
groups:
minor-and-patch:
update-types:
- "minor"
- "patch"

# VS Code extension (vscode-extension/package-lock.json)
- package-ecosystem: "npm"
directory: "/vscode-extension"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
groups:
minor-and-patch:
update-types:
- "minor"
- "patch"

# GitHub Actions workflows
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
105 changes: 7 additions & 98 deletions app/vue/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion app/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,16 @@
"vue": "^3.5.13",
"vue-echarts": "^8.0.1",
"vue-router": "^5.1.0",
"xlsx": "^0.18.5"
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.7",
"typescript": "^5.7.0",
"vite": "^8.1.4",
"vitest": "^4.1.6",
"vue-tsc": "^3.3.7"
},
"overrides": {
"dompurify": "^3.4.11"
}
}
Loading
Loading