package.json•1.94 kB
{
"name": "juyiting-mcp-client",
"version": "1.1.0",
"description": "聚义厅MCP客户端 - AI人格协作工具 (灵感来源于大铭老师的persona-summoner项目)",
"main": "dist/server.js",
"type": "module",
"bin": {
"juyiting-mcp": "./dist/server.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"package": "npm run build && pkg dist/server.js --targets node18-macos-x64,node18-win-x64,node18-linux-x64 --out-path ./releases",
"prepublishOnly": "npm run clean && npm run build",
"publish:npm": "npm publish",
"publish:github": "git add . && git commit -m \"Release v$(node -p \"require('./package.json').version\")\" && git push origin main && git tag v$(node -p \"require('./package.json').version\") && git push origin --tags"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"hero",
"collaboration",
"juyiting",
"persona-summoner",
"inspired-by-yinwm"
],
"author": "聚义厅技术团队",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.3",
"commander": "^12.1.0",
"posthog-node": "^5.1.1",
"zod": "^3.25.67",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.0.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.0.0",
"pkg": "^5.8.1",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}