forked from daipendency/daipendency-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 880 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 880 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
35
36
37
38
39
40
{
"name": "@daipendency/mcp",
"version": "0.9.4",
"description": "Model Context Protocol (MCP) server for Daipendency",
"repository": {
"type": "git",
"url": "git+https://github.com/daipendency/daipendency-mcp.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"daipendency",
"mcp",
"model context protocol"
],
"bin": {
"daipendency-mcp": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"start": "npx tsx src/index.ts",
"test": "vitest",
"format": "prettier --write ."
},
"author": "Gus Narea",
"license": "MIT",
"dependencies": {
"@daipendency/core": "^1.0.2",
"@modelcontextprotocol/sdk": "^1.4.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.12.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}