-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.7 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
{
"name": "easy-mcp",
"module": "index.ts",
"version": "1.0.1",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "The simplest way to create Model Context Protocol (MCP) servers in TypeScript.",
"repository": {
"type": "git",
"url": "/~https://github.com/zcaceres/easy-mcp.git"
},
"homepage": "/~https://github.com/zcaceres/easy-mcp#readme",
"author": "Zach Caceres (zach.dev)",
"license": "MIT",
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"typescript",
"server"
],
"scripts": {
"start": "bun run index.ts",
"start:decorators": "bun run examples/example-experimental-decorators.ts",
"start:express": "bun run examples/example-express.ts",
"inspect:decorators": "bunx @modelcontextprotocol/inspector bun run start:decorators",
"inspect:express": "bunx @modelcontextprotocol/inspector bun run start:express",
"dev": "bun --watch index.ts",
"build": "bun build ./index.ts --outdir ./dist && tsc",
"test": "bun test --tsconfig-override tsconfig.json lib",
"semantic-release": "semantic-release",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@anatine/zod-mock": "^3.13.4",
"@faker-js/faker": "^9.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bun": "latest",
"@types/lodash.camelcase": "^4.3.9",
"semantic-release": "^24.2.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"lodash.camelcase": "^4.3.0",
"path-to-regexp": "^8.2.0",
"reflect-metadata": "^0.2.2"
}
}