-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.94 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
77
{
"name": "@hashgraphonline/registry-broker-codex-plugin",
"version": "0.1.0",
"description": "Codex plugin wrapper for summon-first Registry Broker delegation on top of the canonical HOL Registry skill and CLI.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"bin": {
"registry-broker-codex-plugin": "./dist/cli.cjs"
},
"files": [
"dist",
".codex-plugin",
".mcp.json",
"skills",
"assets",
"README.md"
],
"scripts": {
"build": "tsup --config tsup.config.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"e2e:broker": "tsx scripts/e2e-local-broker.ts"
},
"keywords": [
"openai-codex",
"codex-cli",
"codex-plugin",
"registry-broker",
"model-context-protocol",
"mcp-server",
"ai-agents",
"agentic-ai",
"hedera"
],
"author": "HOL <hello@hashgraphonline.com>",
"license": "Apache-2.0",
"homepage": "https://hol.org/registry/plugins/hol%2Fregistry-broker-codex-plugin",
"repository": {
"type": "git",
"url": "git+https://github.com/hashgraph-online/registry-broker-codex-plugin.git"
},
"bugs": {
"url": "https://github.com/hashgraph-online/registry-broker-codex-plugin/issues"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.24.0",
"dependencies": {
"@hol-org/rb-client": "^0.1.181",
"@modelcontextprotocol/sdk": "^1.29.0",
"fastmcp": "^4.0.0",
"zod": "^4.1.12"
},
"pnpm": {
"overrides": {
"brace-expansion@1.1.12": "1.1.13",
"brace-expansion@2.0.2": "2.0.3"
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^10.2.1",
"globals": "^17.4.0",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.0",
"vitest": "^3.2.4"
}
}