Subir archivos a "/"

This commit is contained in:
2026-03-06 02:45:33 -06:00
parent f841f76061
commit 8d056b237b
4 changed files with 319 additions and 0 deletions

45
package.json Normal file
View File

@@ -0,0 +1,45 @@
{
"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/"
]
}