-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.67 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.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
{
"name": "@cablate/agentic-mcp",
"version": "0.2.4",
"description": "Agentic MCP - Three-layer progressive disclosure for MCP servers with Socket daemon",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"agentic-mcp": "./dist/cli/index.js",
"agentic-mcp-daemon": "./dist/daemon.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./daemon": {
"types": "./dist/daemon.d.ts",
"import": "./dist/daemon.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src",
"publish": "npm run build && npm publish",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"mcp",
"model-context-protocol",
"progressive-disclosure",
"anthropic",
"claude",
"cli",
"daemon"
],
"author": "CabLate",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"@types/eventsource": "^3.0.0",
"axios": "^1.6.0",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"eventsource": "^4.1.0"
},
"devDependencies": {
"@modelcontextprotocol/server-filesystem": "^2026.1.14",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^4.0.17",
"eslint": "^8.56.0",
"typescript": "^5.3.0",
"vitest": "^4.0.17"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"README_zhTW.md",
"LICENSE",
"SKILL.md"
]
}