mirror of
https://github.com/HuLaSpark/HuLa-MCP.git
synced 2026-08-28 19:43:12 +08:00
61 lines
1.3 KiB
JSON
61 lines
1.3 KiB
JSON
{
|
|
"name": "@hula-spark/hula-mcp",
|
|
"version": "1.0.3",
|
|
"description": "HuLa 即时通讯应用的 MCP 服务",
|
|
"type": "module",
|
|
"license": "Apache-2.0",
|
|
"main": "dist/index.js",
|
|
"author": "Dawn",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"bin": {
|
|
"hula-mcp": "bin/hula-mcp.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"bin",
|
|
"src",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc && node scripts/copy-js.js",
|
|
"start": "node bin/hula-mcp.js start",
|
|
"dev": "tsx watch src/index.ts",
|
|
"test": "jest"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"model-context-protocol",
|
|
"messaging",
|
|
"hula"
|
|
],
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.8.0",
|
|
"commander": "^13.1.0",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.18.2",
|
|
"open": "^9.1.0",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.11.0",
|
|
"tsx": "^4.7.1",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://gitee.com/HuLaSpark/HuLa-MCP.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://gitee.com/HuLaSpark/HuLa-MCP/issues"
|
|
},
|
|
"homepage": "https://gitee.com/HuLaSpark/HuLa-MCP#readme",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|