-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@gleanwork/agent-plugins",
"version": "3.3.0",
"description": "Official Glean agent plugins for AI coding tools.",
"license": "MIT",
"author": {
"name": "Glean",
"email": "support@glean.com",
"url": "https://glean.com"
},
"type": "module",
"scripts": {
"build": "pluginpack build",
"build:bundle": "node shared/glean/mcp/build.mjs",
"clean": "pluginpack clean",
"check:no-shell": "node scripts/check-no-shell-scripts.mjs",
"check:release-version": "node scripts/check-release-version.mjs",
"prune": "pluginpack prune",
"typecheck:bundle": "tsc --noEmit -p shared/glean/mcp/tsconfig.json",
"test:bundle": "vitest run --root shared/glean/mcp",
"validate": "pluginpack validate --target claude --dir dist/claude && pluginpack validate --target cursor --dir dist/cursor && pluginpack validate --target codex --dir dist/codex",
"test": "npm run build && npm run validate",
"prebuild": "node scripts/sync-plugin-changelogs.mjs && npm run build:bundle",
"release": "release-it"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"yaml": "^2.7.0"
},
"devDependencies": {
"@gleanwork/pluginpack": "^0.11.0",
"@release-it/bumper": "^8.0.0",
"@release-it/conventional-changelog": "^11.0.1",
"@types/node": "^22.0.0",
"esbuild": "^0.28.1",
"release-it": "^20.2.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^3.0.0"
},
"//overrides": "Pin hono>=4.12.25 (CVE-2026-54290, transitive from @modelcontextprotocol/sdk); pin esbuild/vite to clear CVE blocks that prevented install. Mirrors glean-experimental-plugins overrides.",
"overrides": {
"hono": "^4.12.25",
"esbuild": "$esbuild",
"vite": "7.3.5"
},
"engines": {
"node": ">=24"
}
}