-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.46 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.46 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
{
"name": "gitant-mcp",
"version": "0.1.0",
"description": "MCP server for gitant - decentralized GitHub for solo developers",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"gitant-mcp": "dist/index.js"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/daemon-client.js",
"dist/daemon-client.d.ts",
"dist/query.js",
"dist/query.d.ts",
"README.md",
"LICENSE"
],
"keywords": [
"gitant",
"mcp",
"model-context-protocol",
"git",
"decentralized",
"ai-agents",
"github-alternative"
],
"author": "GrayCodeAI",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/GrayCodeAI/gitant-mcp.git"
},
"homepage": "https://github.com/GrayCodeAI/gitant-mcp#readme",
"bugs": {
"url": "https://github.com/GrayCodeAI/gitant-mcp/issues"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.19.41",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.0"
}
}