-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.42 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "opencode-plugin-peers",
"version": "0.2.2",
"description": "Cross-session messaging for opencode \u2014 let independent sessions discover and text each other, modeled after Claude Code's cross-session messaging",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./server": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./tui": {
"types": "./dist/tui.d.ts",
"import": "./dist/tui.js"
},
"./commands/peers.md": "./commands/peers.md",
"./commands/list-agents.md": "./commands/list-agents.md",
"./commands/peers-name.md": "./commands/peers-name.md",
"./commands/peers-inbox.md": "./commands/peers-inbox.md",
"./commands/peers-outbox.md": "./commands/peers-outbox.md",
"./commands/*": "./commands/*"
},
"files": [
"dist",
"commands",
"README.md",
"LICENSE"
],
"keywords": [
"opencode",
"opencode-plugin",
"claude-code",
"cross-session",
"messaging",
"multi-agent",
"ai-coding-agent"
],
"license": "MIT",
"author": {
"name": "opencode-plugin-peers authors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkrandom-sudo/opencode-plugin-peers.git"
},
"bugs": {
"url": "https://github.com/jkrandom-sudo/opencode-plugin-peers/issues"
},
"homepage": "https://github.com/jkrandom-sudo/opencode-plugin-peers#readme",
"engines": {
"node": ">=18",
"opencode": ">=1.18.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"test": "npm run build && node --test tests/*.test.mjs",
"typecheck": "tsc --noEmit -p tsconfig.json",
"dry-run": "npm publish --dry-run",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.18.0"
},
"dependencies": {
"zod": "^4.1.8"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.18.0",
"@opentui/core": "^0.4.5",
"@opentui/keymap": "^0.4.5",
"@opentui/solid": "^0.4.5",
"@types/node": "^22.0.0",
"typescript": "^5.4.0"
},
"opencode": {
"plugin": true,
"commands": [
"commands/peers.md",
"commands/list-agents.md",
"commands/peers-name.md",
"commands/peers-inbox.md",
"commands/peers-outbox.md"
]
}
}