-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.25 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
{
"name": "litemcp",
"version": "0.8.0",
"bin": {
"litemcp": "dist/cli/index.js"
},
"description": "A TypeScript library that simplifies MCP server development",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"type": "module",
"scripts": {
"build": "tsup",
"release": "pnpm run build && pnpm publish"
},
"keywords": [
"MCP"
],
"author": "wong2",
"license": "MIT",
"packageManager": "pnpm@9.14.4+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab",
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.10.1",
"tsup": "^8.3.5",
"type-fest": "^4.31.0",
"typescript": "^5.7.2",
"zod": "^3.23.8"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"citty": "^0.1.6",
"execa": "^9.5.2",
"mcp-proxy": "^1.2.1",
"zod-to-json-schema": "^3.23.5"
},
"peerDependencies": {
"zod": "^3.23.8"
},
"tsup": {
"entry": [
"src/index.ts",
"src/cli/index.ts"
],
"format": [
"esm"
],
"dts": true,
"splitting": false,
"sourcemap": true,
"clean": true
}
}