-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 745 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 745 Bytes
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
{
"name": "aig-mcp-server",
"version": "1.4.1",
"description": "AI Git checkpoint MCP server",
"type": "module",
"main": "dist/index.js",
"bin": {
"aig-mcp-server": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"release": "npm run build && npm publish --access public",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.28.2",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"@antfu/eslint-config": "^7.6.1",
"eslint": "^10.0.2"
}
}