-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.67 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.67 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
{
"name": "@kpritam/gremlin-mcp",
"version": "0.0.11-SNAPSHOT",
"description": "A Gremlin MCP server that allows for fetching status, schema, and querying using Gremlin for any Gremlin-compatible graph database (TypeScript implementation).",
"type": "module",
"main": "dist/server.js",
"bin": {
"gremlin-mcp": "dist/server.js"
},
"scripts": {
"build": "tsc && chmod +x dist/server.js",
"dev": "tsx src/server.ts",
"start": "node dist/server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:it": "GREMLIN_ENDPOINT=localhost:8182/g jest tests/integration --testPathIgnorePatterns=\"/node_modules/|/dist/\" --forceExit --detectOpenHandles",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"*.{js,json,md}\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"*.{js,json,md}\"",
"type-check": "tsc --noEmit",
"validate": "npm run format && npm run lint && npm run type-check && npm test",
"clean": "rm -rf dist",
"prepare": "husky",
"prepublishOnly": "npm run clean && npm run build && npm run validate",
"prepack": "npm run build",
"postinstall": "chmod +x dist/server.js || true"
},
"keywords": [
"mcp",
"model-context-protocol",
"apache-tinkerpop",
"gremlin",
"graph",
"database"
],
"author": {
"name": "Gremlin MCP Contributors"
},
"license": "MIT",
"dependencies": {
"@effect/platform": "^0.90.6",
"@effect/platform-node": "^0.96.0",
"@modelcontextprotocol/sdk": "^1.17.4",
"@types/gremlin": "^3.6.7",
"effect": "^3.17.9",
"gremlin": "^3.7.4",
"winston": "^3.17.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"audit-ci": "^7.1.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^30.0.5",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/kpritam/gremlin-mcp.git"
},
"bugs": {
"url": "https://github.com/kpritam/gremlin-mcp/issues"
},
"homepage": "https://github.com/kpritam/gremlin-mcp#readme",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}