wifi-densepose/tools/ruview-mcp/package.json

74 lines
1.7 KiB
JSON

{
"name": "@ruvnet/rvagent",
"version": "0.1.0",
"description": "SENSE-BRIDGE: dual-transport MCP server (stdio + Streamable HTTP) exposing RuView WiFi-DensePose sensing primitives to AI agents",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"bin": {
"rvagent": "dist/index.js",
"ruview-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --forceExit",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"rvagent",
"ruview",
"wifi",
"csi",
"pose-estimation",
"cognitum",
"sense-bridge",
"ruvnet"
],
"author": "ruv <ruv@ruv.net>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ruvnet/RuView.git",
"directory": "tools/ruview-mcp"
},
"homepage": "https://github.com/ruvnet/RuView/tree/main/tools/ruview-mcp",
"bugs": {
"url": "https://github.com/ruvnet/RuView/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^20.14.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}