-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.74 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.74 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
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@gleanwork/connector-mcp",
"version": "0.6.0",
"description": "MCP server for AI-assisted Glean connector development",
"license": "MIT",
"author": "Steve Calvert <steve.calvert@glean.com>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gleanwork/connector-mcp.git"
},
"keywords": [
"mcp",
"mcp-server",
"glean",
"connector"
],
"type": "module",
"bin": {
"connector-mcp": "./bin/connector-mcp.js"
},
"exports": {
".": "./dist/index.js"
},
"files": [
"bin/**",
"dist/**",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "tsc && cp src/manifest.json dist/manifest.json",
"prepare": "npm run build && chmod +x bin/connector-mcp.js",
"dev": "tsx watch src/index.ts",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check --ignore-unknown .",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"release": "release-it",
"test": "vitest run",
"test:watch": "vitest",
"test:mcp": "npm run build && playwright test",
"test:mcp:ui": "npm run build && playwright test --ui",
"test:mcp:integration": "playwright test tests/mcp/integration.spec.ts",
"typecheck": "tsc --noEmit",
"docs:generate": "tsx scripts/generate-configs.ts",
"docs:sync": "npm run docs:generate && markdown-code sync",
"docs:check": "npm run docs:generate && markdown-code check"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"csv-parse": "^5.5.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^10.0.1",
"@gleanwork/mcp-config-schema": "^4.2.0",
"@gleanwork/mcp-server-tester": "^1.0.0-beta.3",
"@playwright/test": "^1.58.2",
"@release-it-plugins/lerna-changelog": "^8.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^2.1.9",
"ajv": "^8.18.0",
"eslint": "^10.0.2",
"fixturify-project": "^7.1.3",
"globals": "^17.3.0",
"js-yaml": "^4.1.1",
"markdown-code": "^0.6.1",
"prettier": "^3.8.1",
"release-it": "^19.0.4",
"smol-toml": "^1.6.0",
"tsx": "^4.0.0",
"typescript": "^5.6.0",
"vitest": "^2.0.0"
},
"release-it": {
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"engines": {
"node": ">=20"
}
}