-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.83 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.83 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
{
"name": "emceepee",
"version": "0.4.3",
"description": "MCP proxy server with static tools for managing dynamic backend MCP servers",
"type": "module",
"bin": {
"emceepee": "dist/emceepee.js",
"emceepee-http": "dist/emceepee-http.js"
},
"files": [
"dist/emceepee.js",
"dist/emceepee-http.js",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eastlondoner/emceepee.git"
},
"author": "eastlondoner",
"license": "MIT",
"keywords": [
"mcp",
"model-context-protocol",
"proxy",
"llm",
"tools",
"ai",
"cli"
],
"scripts": {
"build": "bun build src/server-stdio.ts --outfile=dist/emceepee.js --target=node --minify && bun build src/server.ts --outfile=dist/emceepee-http.js --target=node --minify",
"build:stdio": "bun build src/server-stdio.ts --outfile=dist/emceepee.js --target=node --minify",
"build:http": "bun build src/server.ts --outfile=dist/emceepee-http.js --target=node --minify",
"start": "node dist/emceepee.js",
"start:http": "node dist/emceepee-http.js",
"dev": "bun run src/server-stdio.ts",
"dev:http": "bun run src/server.ts",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"typecheck": "tsc --noEmit",
"check": "bun run typecheck && bun run lint",
"test": "bun test test/",
"test:stdio": "bun run test/stdio-client.test.ts",
"test:codemode": "bun test test/codemode.test.ts",
"prepublishOnly": "bun run check && bun run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"ulid": "^3.0.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
}
}