-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.94 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.94 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
79
80
81
82
83
84
85
{
"name": "mcp-server-dev",
"version": "1.0.0",
"description": "A framework for developing custom MCP (Model Context Protocol) servers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-server": "dist/cli.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./cli": {
"types": "./dist/cli.d.ts",
"require": "./dist/cli.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"start": "node dist/index.js",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build && npm test",
"cli": "node dist/cli.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"tools",
"server",
"framework",
"typescript",
"nodejs"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/mcp-server-dev.git"
},
"bugs": {
"url": "https://github.com/your-username/mcp-server-dev/issues"
},
"homepage": "https://github.com/your-username/mcp-server-dev#readme",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.0.0",
"@types/json-schema": "^7.0.15",
"@types/node": "^20.0.0",
"@types/node-fetch": "^2.6.12",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.10",
"jest": "^29.0.0",
"node-fetch": "^2.7.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"commander": "^11.1.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"helmet": "^7.1.0",
"uuid": "^9.0.1",
"ws": "^8.14.2"
}
}