@r_masseater/ops-harbor 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -0
- package/dist/cli.js +19186 -0
- package/dist/client/assets/index-0Ytuj-W0.css +1 -0
- package/dist/client/assets/index-DyzvRtB8.js +51 -0
- package/dist/client/index.html +26 -0
- package/dist/control-plane.js +3573 -0
- package/dist/mcp-server.js +13967 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@r_masseater/ops-harbor",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Ops Harbor local dashboard, daemon, and read-only MCP bridge",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"automation",
|
|
7
|
+
"claude-code",
|
|
8
|
+
"dashboard",
|
|
9
|
+
"mcp",
|
|
10
|
+
"ops-harbor"
|
|
11
|
+
],
|
|
12
|
+
"author": {
|
|
13
|
+
"name": "masseater"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/masseater/claude-code-plugin"
|
|
18
|
+
},
|
|
19
|
+
"bin": {
|
|
20
|
+
"ops-harbor": "./dist/cli.js"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"type": "module",
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"dev": "bun run src/dev.ts",
|
|
31
|
+
"dev:server": "bun run --hot src/cli.ts",
|
|
32
|
+
"dev:client": "vite --host 127.0.0.1 --strictPort",
|
|
33
|
+
"build": "bun run build:client && bun run build:server",
|
|
34
|
+
"build:client": "vite build",
|
|
35
|
+
"build:server": "bun build src/cli.ts --outdir dist --target bun && bun build src/mcp-server.ts --outdir dist --target bun && bun build ../ops-harbor-control-plane/src/cli.ts --outfile dist/control-plane.js --target bun --external localtunnel",
|
|
36
|
+
"check": "oxlint",
|
|
37
|
+
"check:fix": "oxlint --fix",
|
|
38
|
+
"typecheck": "tsgo --noEmit",
|
|
39
|
+
"release": "bun run build && npm publish",
|
|
40
|
+
"release:dry": "bun run build && npm publish --dry-run",
|
|
41
|
+
"test": "vitest run --passWithNoTests"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
45
|
+
"better-sqlite3": "^11.9.1",
|
|
46
|
+
"hono": "^4.10.2",
|
|
47
|
+
"localtunnel": "^2.0.2",
|
|
48
|
+
"react": "^19.0.0",
|
|
49
|
+
"react-dom": "^19.0.0",
|
|
50
|
+
"valibot": "^1.2.0"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@repo/ops-harbor-control-plane": "workspace:*",
|
|
54
|
+
"@repo/ops-harbor-core": "workspace:*",
|
|
55
|
+
"@repo/ts-config": "workspace:*",
|
|
56
|
+
"@repo/vitest-config": "workspace:*",
|
|
57
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
58
|
+
"@types/react": "^19.0.0",
|
|
59
|
+
"@types/react-dom": "^19.0.0",
|
|
60
|
+
"@vitejs/plugin-react": "^4.4.0",
|
|
61
|
+
"@vitest/coverage-v8": "^3.2.0",
|
|
62
|
+
"vite": "^6.0.0",
|
|
63
|
+
"vitest": "^3.2.0"
|
|
64
|
+
},
|
|
65
|
+
"peerDependencies": {
|
|
66
|
+
"react": "^19.0.0",
|
|
67
|
+
"react-dom": "^19.0.0"
|
|
68
|
+
},
|
|
69
|
+
"engines": {
|
|
70
|
+
"bun": ">=1.0.0"
|
|
71
|
+
}
|
|
72
|
+
}
|