-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 899 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 899 Bytes
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
{
"name": "glean",
"type": "module",
"engines": {
"node": ">=22 <26"
},
"scripts": {
"build": "node scripts/build.mjs",
"typecheck": "tsc --noEmit",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"pack:plugin": "bash scripts/pack-plugin.sh",
"prepare": "git config core.hooksPath .githooks"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"esbuild": "^0.28.1",
"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",
"overrides": {
"hono": "^4.12.25",
"esbuild": "$esbuild",
"vite": "7.3.5"
}
}