Renombrar paquete a @nucleoriofrio/webmcp y fix crash de stdin

- Renombrar de @jason.today/webmcp a @nucleoriofrio/webmcp en package.json, config.js, websocket-server.js, build/index.js y README
- Fix crash de stdin cuando no hay TTY: agregar check process.stdin.isTTY y try/catch en setRawMode
- Bump version a 0.2.0
This commit is contained in:
2026-02-12 23:54:07 -06:00
parent 511dba09c5
commit 78e1e72b89
5 changed files with 29 additions and 25 deletions

View File

@@ -1,16 +1,16 @@
{
"name": "@jason.today/webmcp",
"version": "0.1.13",
"description": "WebSocket-based Model Context Protocol implementation",
"name": "@nucleoriofrio/webmcp",
"version": "0.2.0",
"description": "Fork de WebMCP con registro dinamico de herramientas - Nucleo Rio Frio",
"main": "src/websocket-server.js",
"bin": {
"@jason.today/webmcp": "./build/index.js"
"@nucleoriofrio/webmcp": "./build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonjmcghee/webmcp.git"
"url": "git+https://gitea.nucleoriofrio.com/nucleo000/webmcp.git"
},
"author": "Jason McGhee",
"author": "Nucleo Rio Frio (fork de Jason McGhee)",
"scripts": {
"start-daemon": "node src/websocket-server.js",
"stop-daemon": "node src/websocket-server.js --quit",