@amirhosseinnateghi/vibed-mcp 0.1.0
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 +59 -0
- package/dist/index.js +11034 -0
- package/package.json +29 -0
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@amirhosseinnateghi/vibed-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "vibed MCP server — make it vibed from any MCP client (Codex, Cursor, Gemini, …): check, login, and publish tools",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"vibed-mcp": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": ["dist", "README.md"],
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "esbuild src/index.ts --bundle --platform=node --target=node20 --format=esm --outfile=dist/index.js && chmod +x dist/index.js",
|
|
16
|
+
"prepublishOnly": "pnpm build",
|
|
17
|
+
"dev": "tsx src/index.ts",
|
|
18
|
+
"typecheck": "tsc --noEmit",
|
|
19
|
+
"lint": "echo 'no-op'"
|
|
20
|
+
},
|
|
21
|
+
"comment": "Zero runtime deps: the MCP stdio protocol (JSON-RPC over newline-delimited JSON) is implemented directly, and @amirhosseinnateghi/vibed-cli's engine is bundled by esbuild into dist. So `npx @amirhosseinnateghi/vibed-mcp` needs no install.",
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@amirhosseinnateghi/vibed-cli": "workspace:*",
|
|
24
|
+
"esbuild": "^0.21.5",
|
|
25
|
+
"tsx": "^4.19.2",
|
|
26
|
+
"typescript": "^5.7.2",
|
|
27
|
+
"@types/node": "^20.17.10"
|
|
28
|
+
}
|
|
29
|
+
}
|