-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
76 lines (76 loc) · 1.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "mcp-framework",
"version": "0.2.11",
"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-cli.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write \"src/**/*.ts\""
},
"engines": {
"node": ">=18.19.0"
},
"keywords": [
"mcp",
"claude",
"anthropic",
"ai",
"framework",
"tools",
"modelcontextprotocol",
"model",
"context",
"protocol"
],
"peerDependencies": {
"@modelcontextprotocol/sdk": "1.8"
},
"dependencies": {
"@types/prompts": "^2.4.9",
"commander": "^12.1.0",
"content-type": "^1.0.5",
"execa": "^9.5.2",
"find-up": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"prompts": "^2.4.2",
"raw-body": "^2.5.2",
"typescript": "^5.3.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/content-type": "^1.1.8",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.8",
"@types/node": "^20.17.28",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"globals": "^16.0.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.1.2",
"typescript-eslint": "^8.28.0"
}
}