emceepee 0.2.8 → 0.3.5
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/README.md +157 -5
- package/dist/emceepee-http.js +37 -26
- package/dist/emceepee.js +38 -29
- package/package.json +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "emceepee",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "MCP proxy server with static tools for managing dynamic backend MCP servers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -43,6 +43,8 @@
|
|
|
43
43
|
"lint:fix": "eslint src/ --fix",
|
|
44
44
|
"typecheck": "tsc --noEmit",
|
|
45
45
|
"check": "bun run typecheck && bun run lint",
|
|
46
|
+
"test": "bun run test/stdio-client.test.ts",
|
|
47
|
+
"test:stdio": "bun run test/stdio-client.test.ts",
|
|
46
48
|
"prepublishOnly": "bun run check && bun run build"
|
|
47
49
|
},
|
|
48
50
|
"dependencies": {
|