45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"name": "@jason.today/webmcp",
|
|
"version": "0.1.13",
|
|
"description": "WebSocket-based Model Context Protocol implementation",
|
|
"main": "src/websocket-server.js",
|
|
"bin": {
|
|
"@jason.today/webmcp": "./build/index.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jasonjmcghee/webmcp.git"
|
|
},
|
|
"author": "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/"
|
|
]
|
|
}
|