-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.26 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
{
"name": "@hyperpolymath/boj-server",
"version": "0.3.1",
"description": "Bundle of Joy (BoJ) MCP Server — cartridge-based DevOps toolkit with 18 domain cartridges (database, container, git, k8s, observability, secrets, IaC, and more)",
"license": "PMPL-1.0-or-later",
"author": "Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>",
"repository": {
"type": "git",
"url": "git+https://github.com/hyperpolymath/boj-server.git"
},
"homepage": "https://github.com/hyperpolymath/boj-server#readme",
"bugs": {
"url": "https://github.com/hyperpolymath/boj-server/issues"
},
"keywords": [
"mcp",
"mcp-server",
"devops",
"containers",
"kubernetes",
"database",
"git",
"observability",
"iac",
"secrets",
"formal-verification",
"idris2"
],
"type": "module",
"bin": {
"boj-server": "mcp-bridge/main.js"
},
"main": "./mcp-bridge/main.js",
"files": [
"mcp-bridge/",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"start": "node mcp-bridge/main.js",
"test": "echo 'Tests run via: just test' && exit 0",
"prepublishOnly": "echo 'Ready to publish'"
},
"engines": {
"node": ">=18.0.0"
}
}