-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.84 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
{
"name": "@origintrail-official/dkg-mcp",
"version": "10.0.9",
"description": "MCP server that exposes the local DKG daemon (projects, sub-graphs, activity, chat) to Cursor, Claude Code, and any other MCP-aware coding assistant.",
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json",
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.js"
},
"./manifest/publish": {
"types": "./dist/manifest/publish.d.ts",
"import": "./dist/manifest/publish.js"
},
"./manifest/fetch": {
"types": "./dist/manifest/fetch.d.ts",
"import": "./dist/manifest/fetch.js"
},
"./manifest/install": {
"types": "./dist/manifest/install.d.ts",
"import": "./dist/manifest/install.js"
},
"./manifest/schema": {
"types": "./dist/manifest/schema.d.ts",
"import": "./dist/manifest/schema.js"
}
},
"bin": {
"dkg-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf dist"
},
"dependencies": {
"@origintrail-official/dkg-rdf-utils": "workspace:*",
"@modelcontextprotocol/sdk": "^1",
"zod": "^3.25",
"yaml": "^2.6.0"
},
"devDependencies": {
"vitest": "^4.0.18"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"hooks",
"templates",
"config.yaml.example",
"README.md",
"LICENSE"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/OriginTrail/dkg.git",
"directory": "packages/mcp-dkg"
},
"keywords": [
"dkg",
"mcp",
"model-context-protocol",
"cursor",
"claude-code",
"origintrail"
]
}