-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.71 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
{
"name": "@wyre-ai/itglue-mcp",
"version": "1.5.3",
"description": "IT Glue MCP server for Claude",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:ui": "vite build && node scripts/embed-ui.mjs",
"dev": "tsc --watch",
"start": "node dist/index.js",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"pack:mcpb": "node scripts/pack-mcpb.cjs",
"validate:mcpb": "mcpb validate manifest.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WYRE-AI/itglue-mcp.git"
},
"keywords": [
"mcp",
"claude",
"itglue",
"it-glue",
"msp",
"documentation"
],
"author": "Wyre Technology",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/WYRE-AI/itglue-mcp/issues"
},
"homepage": "https://github.com/WYRE-AI/itglue-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@modelcontextprotocol/ext-apps": "^1.7.5",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/git": "^11.0.1",
"@semantic-release/github": "^12.0.9",
"@types/node": "^26.2.0",
"eslint": "^10.8.1",
"semantic-release": "^25.0.9",
"typescript": "^6.0.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.2",
"vite-plugin-singlefile": "^2.3.3",
"vitest": "^4.1.11"
},
"engines": {
"node": ">=20.0.0"
},
"bin": {
"itglue-mcp": "./dist/index.js"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"allowScripts": {
"esbuild@0.25.12": true
}
}