-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.32 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.32 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@gleanwork/local-mcp-server",
"version": "0.8.0",
"description": "MCP server for Glean API integration",
"keywords": [
"mcp",
"mcp-server"
],
"homepage": "",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gleanwork/mcp-server.git",
"directory": "packages/local-mcp-server"
},
"license": "MIT",
"author": "Steve Calvert <steve.calvert@glean.com>",
"type": "module",
"exports": {
".": "./build/index.js",
"./tools/chat": {
"types": "./build/tools/chat.d.ts",
"import": "./build/tools/chat.js",
"default": "./build/tools/chat.js"
}
},
"main": "./build/index.js",
"bin": {
"local-mcp-server": "./build/index.js"
},
"files": [
"build/**/*.js",
"build/**/*.d.ts",
"build/**/*.js.map",
"build/**/*.d.ts.map",
"!build/**/test/**",
"!build/test/**",
"!build/src/**",
"!build/vitest.config.*"
],
"scripts": {
"build": "rimraf build && tsc",
"lint": "npm-run-all --sequential lint:*",
"lint:eslint": "eslint \"src/**/*.ts\" --fix",
"lint:package-json": "sort-package-json",
"lint:ts": "tsc --noEmit",
"prepare": "pnpm run build",
"test": "vitest run",
"test:all": "pnpm lint && pnpm lint:ts && pnpm test",
"test:watch": "vitest",
"watch": "tsc -w"
},
"dependencies": {
"@gleanwork/api-client": "0.11.2",
"@gleanwork/mcp-server-utils": "workspace:*",
"@modelcontextprotocol/sdk": "^1.19.1",
"dotenv": "^17.2.3",
"meow": "^14.0.0",
"open": "^10.2.0",
"tldts": "^7.0.17",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.37.0",
"@gleanwork/mcp-test-utils": "workspace:*",
"@types/node": "^24.7.0",
"@types/node-fetch": "^2.6.13",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"console-test-helpers": "^0.3.3",
"eslint": "^9.37.0",
"fixturify": "^3.0.0",
"form-data": "^4.0.4",
"fs-extra": "^11.3.2",
"globals": "^16.4.0",
"msw": "^2.11.5",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"sort-package-json": "^3.4.0",
"typescript": "^5.9.3",
"vitest": "^3.2.3"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}