-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "bailinghub-mcp-server",
"version": "0.1.1",
"description": "Submit and inspect governed AI jobs through BailingHub from MCP hosts.",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"bailinghub-mcp-server": "dist/index.js"
},
"mcpName": "io.github.bailinghub/bailinghub-governance",
"homepage": "https://www.bailinghub.com/en/integrations",
"author": {
"name": "BailingHub Contributors",
"email": "niejingchuan@live.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bailinghub/bailinghub-mcp-server.git"
},
"bugs": {
"url": "https://github.com/bailinghub/bailinghub-mcp-server/issues"
},
"keywords": [
"model-context-protocol",
"mcp",
"mcp-server",
"bailinghub",
"ai-agent-governance",
"agent-tool-governance",
"human-approval",
"audit-trail",
"business-system-automation",
"a2b"
],
"engines": {
"node": ">=20.15"
},
"files": [
"dist",
"compatibility/client-api.json",
"docs/COMPATIBILITY.md",
"docs/PROJECT_BOUNDARIES.md",
"docs/THREAT_MODEL.md",
"PRIVACY.md",
"README.zh-CN.md",
"SECURITY.md",
"server.json"
],
"scripts": {
"build": "tsc -p tsconfig.json && node scripts/ensure-bin-executable.mjs",
"test": "npm run build && node --test tests/*.test.mjs",
"check:project": "node scripts/check-project.mjs",
"check:release-tag": "node scripts/check-release-tag.mjs",
"client-api:check": "node scripts/check-client-api-contract.mjs",
"audit:prod": "npm audit --omit=dev --audit-level=high",
"verify": "npm run check:project && npm test && npm run audit:prod",
"prepack": "npm run verify"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.30.0",
"zod": "4.4.3"
},
"overrides": {
"@hono/node-server": "2.0.12"
},
"devDependencies": {
"@types/node": "22.15.0",
"typescript": "5.9.3"
}
}