emceepee 0.2.1 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "emceepee",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "MCP proxy server with static tools for managing dynamic backend MCP servers",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "emceepee": "dist/emceepee.js",
8
- "emceepee-stdio": "dist/emceepee-stdio.js"
8
+ "emceepee-http": "dist/emceepee-http.js"
9
9
  },
10
10
  "files": [
11
11
  "dist/emceepee.js",
12
- "dist/emceepee-stdio.js",
12
+ "dist/emceepee-http.js",
13
13
  "README.md",
14
14
  "LICENSE"
15
15
  ],
@@ -32,13 +32,13 @@
32
32
  "cli"
33
33
  ],
34
34
  "scripts": {
35
- "build": "bun build src/server.ts --outfile=dist/emceepee.js --target=node --minify && bun build src/server-stdio.ts --outfile=dist/emceepee-stdio.js --target=node --minify",
36
- "build:http": "bun build src/server.ts --outfile=dist/emceepee.js --target=node --minify",
37
- "build:stdio": "bun build src/server-stdio.ts --outfile=dist/emceepee-stdio.js --target=node --minify",
35
+ "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",
36
+ "build:stdio": "bun build src/server-stdio.ts --outfile=dist/emceepee.js --target=node --minify",
37
+ "build:http": "bun build src/server.ts --outfile=dist/emceepee-http.js --target=node --minify",
38
38
  "start": "node dist/emceepee.js",
39
- "start:stdio": "node dist/emceepee-stdio.js",
40
- "dev": "bun run src/server.ts",
41
- "dev:stdio": "bun run src/server-stdio.ts",
39
+ "start:http": "node dist/emceepee-http.js",
40
+ "dev": "bun run src/server-stdio.ts",
41
+ "dev:http": "bun run src/server.ts",
42
42
  "lint": "eslint src/",
43
43
  "lint:fix": "eslint src/ --fix",
44
44
  "typecheck": "tsc --noEmit",