-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.28 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
{
"name": "opencode-agenthub",
"version": "0.2.1",
"description": "A control plane for organizing, composing, and activating OpenCode agents, skills, profiles, and bundles.",
"type": "module",
"main": "./dist/plugins/opencode-agenthub.js",
"exports": {
".": "./dist/plugins/opencode-agenthub.js",
"./question": "./dist/plugins/opencode-question.js"
},
"bin": {
"agenthub": "dist/composer/opencode-profile.js",
"opencode-agenthub": "dist/composer/opencode-profile.js"
},
"scripts": {
"build": "node scripts/build.mjs",
"test:smoke": "bun test test/smoke-*.test.ts",
"prepack": "npm run build"
},
"files": [
"LICENSE",
"README.md",
"dist/"
],
"keywords": [
"opencode",
"agents",
"agenthub",
"skills",
"mcp",
"workflow",
"llm",
"ai-agents"
],
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sdwolf4103/opencode-agenthub.git"
},
"homepage": "https://github.com/sdwolf4103/opencode-agenthub#readme",
"bugs": {
"url": "https://github.com/sdwolf4103/opencode-agenthub/issues"
},
"publishConfig": {
"access": "public"
},
"packageManager": "bun@1.3.9",
"devDependencies": {
"esbuild": "^0.25.9"
}
}