-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
54 lines (54 loc) · 1.14 KB
/
package.json
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
{
"name": "mcp-framework",
"version": "0.1.21",
"description": "Framework for building Model Context Protocol (MCP) servers in Typescript",
"type": "module",
"author": "Alex Andru <[email protected]>",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"bin": {
"mcp": "dist/cli/index.js",
"mcp-build": "dist/cli/framework/build.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"claude",
"anthropic",
"ai",
"framework",
"tools"
],
"peerDependencies": {
"@modelcontextprotocol/sdk": "^0.6.0"
},
"dependencies": {
"@types/prompts": "^2.4.9",
"commander": "^12.1.0",
"execa": "^9.5.2",
"find-up": "^7.0.0",
"prompts": "^2.4.2",
"typescript": "^5.3.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"ts-jest": "^29.1.2"
}
}