-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.35 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
{
"name": "opencode-agent-intercom",
"version": "1.7.3",
"description": "OpenCode plugin that gives the primary agent a bidirectional control channel to running subagents — async spawn, message injection, live status and abort.",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js"
},
"bin": {
"opencode-agent-intercom-install": "./bin/install.js",
"opencode-agent-intercom-init-prompts": "./bin/init-prompts.js",
"pw": "./bin/pw.js",
"gen": "./bin/gen.js"
},
"files": [
"src",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"check": "for f in src/*.js; do node --check \"$f\" || exit 1; done",
"test": "node --test --test-concurrency=1 test/*.test.js"
},
"keywords": [
"opencode",
"opencode-plugin",
"subagent",
"orchestrator",
"async",
"intercom",
"task"
],
"author": "feanor5555",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/feanor5555/opencode-agent-intercom.git"
},
"bugs": {
"url": "https://github.com/feanor5555/opencode-agent-intercom/issues"
},
"homepage": "https://github.com/feanor5555/opencode-agent-intercom#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"@opencode-ai/plugin": "^1.14.48",
"jsonc-parser": "^3.3.1",
"playwright-core": "^1.60.0"
}
}