-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.33 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
78
79
{
"name": "@dataforxyz/agent-intercom-opencode",
"version": "0.10.0",
"description": "OpenCode plugin for direct local messaging with Pi, Codex, Claude, and OpenCode coding-agent sessions.",
"license": "AGPL-3.0-or-later",
"type": "module",
"engines": {
"node": ">=22.19.0"
},
"main": "dist/index.mjs",
"exports": {
".": "./dist/index.mjs",
"./tui": "./dist/tui.mjs"
},
"files": [
"dist/**/*",
"opencode/**/*.ts",
"!opencode/**/*.test.ts",
"broker/**/*.ts",
"!broker/**/*.test.ts",
"provider/protected-service.ts",
"provider/provider.mjs",
"!provider/entry.ts",
"scripts/**/*",
"!scripts/build-protected-provider.mjs",
"types.ts",
"config.ts",
"durable-json.ts",
"outbound-outbox.ts",
"README.md",
"CHANGELOG.md",
"PLAN.md",
"LICENSE",
"THIRD_PARTY_NOTICES.md",
"licenses/**/*",
"COPYRIGHT",
"LICENSE_TRANSITION.md"
],
"scripts": {
"build": "node scripts/build.mjs",
"build:protected-provider": "node scripts/build-protected-provider.mjs",
"prepack": "npm run build:protected-provider",
"prepare": "npm run build",
"test": "tsx --test broker/*.test.ts opencode/contact.test.ts opencode/control.test.ts opencode/fleet.test.ts opencode/health.test.ts opencode/inbound-store.test.ts opencode/notice-ingress.test.ts opencode/runtime.test.ts opencode/team.test.ts opencode/tui.test.ts opencode/plugin-contract.test.ts provider/*.test.ts test/*.test.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"opencode",
"intercom",
"multi-agent",
"pi",
"codex",
"claude"
],
"dependencies": {
"@opencode-ai/plugin": "^1.17.15"
},
"devDependencies": {
"@dataforxyz/agent-intercom-core": "git+https://github.com/dataforxyz/agent-intercom-core.git#8316cbab548f422ad11c78ed887fabeef94817c1",
"@types/node": "^24.0.0",
"esbuild": "^0.28.1",
"tsx": "^4.20.0",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@dataforxyz/agent-intercom-core": "0.1.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dataforxyz/agent-intercom-opencode.git"
},
"homepage": "https://github.com/dataforxyz/agent-intercom-opencode#readme",
"bugs": {
"url": "https://github.com/dataforxyz/agent-intercom-opencode/issues"
}
}