-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.02 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.02 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
{
"name": "opencode-multiarc",
"version": "0.2.0",
"description": "Multi-agent orchestration plugin for OpenCode with auto-trigger, workflows, delegation, and analytics",
"type": "module",
"main": "dist/plugin.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit"
},
"keywords": [
"opencode",
"plugin",
"multi-agent",
"orchestration",
"workflow",
"automation"
],
"author": "Adarsh",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Adarsh1Y/opencode-multiarc-plugin.git"
},
"dependencies": {
"@opencode-ai/plugin": "^1.0.162",
"@opencode-ai/sdk": "^1.2.26",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.8",
"typescript": "^5.7.3"
},
"opencode": {
"type": "plugin",
"hooks": [
"chat.message",
"event",
"tool.execute.before",
"tool.execute.after"
]
},
"files": [
"dist",
"package.json"
]
}