Files
webmcp/package.json
josedario87 d5a912be97 Agregar declaracion de tipos TypeScript para webmcp.js
- src/webmcp.d.ts con tipos para la API publica (WebMCP, options, handlers)
- package.json: campo "types" apuntando al .d.ts
2026-02-13 03:32:13 -06:00

46 lines
1.2 KiB
JSON

{
"name": "@nucleoriofrio/webmcp",
"version": "0.2.0",
"description": "Fork de WebMCP con registro dinamico de herramientas - Nucleo Rio Frio",
"main": "src/websocket-server.js",
"types": "src/webmcp.d.ts",
"bin": {
"@nucleoriofrio/webmcp": "./build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://gitea.nucleoriofrio.com/nucleo000/webmcp.git"
},
"author": "Nucleo Rio Frio (fork de Jason McGhee)",
"scripts": {
"start-daemon": "node src/websocket-server.js",
"stop-daemon": "node src/websocket-server.js --quit",
"start-mcp-client": "node src/websocket-server.js --mcp",
"start-foreground": "node src/websocket-server.js --foreground",
"authorize": "node src/websocket-server.js --new",
"build": "node build.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"type": "module",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"child_process": "^1.0.2",
"crypto": "^1.0.1",
"dotenv": "^16.4.1",
"env-paths": "^3.0.0",
"http": "^0.0.1-security",
"os": "^0.1.2",
"path": "^0.12.7",
"url": "^0.11.4",
"ws": "^8.18.1"
},
"devDependencies": {
"esbuild": "^0.25.0"
},
"files": [
"build/",
"src/"
]
}