opencode-mailbox 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +79 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +12864 -0
- package/package.json +51 -0
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "opencode-mailbox",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "A simple mailbox system for sending and receiving messages between sessions",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist",
|
|
16
|
+
"README.md"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "bun build ./index.ts --outdir ./dist --target bun && bun run build:types",
|
|
20
|
+
"build:types": "tsc --emitDeclarationOnly",
|
|
21
|
+
"start": "bun run build",
|
|
22
|
+
"prepublishOnly": "bun run build"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@types/node": "^25.0.10",
|
|
26
|
+
"electron": "^28.0.0",
|
|
27
|
+
"typescript": "^5.9.3"
|
|
28
|
+
},
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"@opencode-ai/plugin": "^1.1.25"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"dotenv": "^17.2.3"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"opencode",
|
|
37
|
+
"plugin",
|
|
38
|
+
"mailbox",
|
|
39
|
+
"messaging"
|
|
40
|
+
],
|
|
41
|
+
"author": "OpenCode Community",
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "git+https://github.com/richardanaya/opencode-mailbox.git"
|
|
46
|
+
},
|
|
47
|
+
"homepage": "https://github.com/richardanaya/opencode-mailbox#readme",
|
|
48
|
+
"bugs": {
|
|
49
|
+
"url": "https://github.com/richardanaya/opencode-mailbox/issues"
|
|
50
|
+
}
|
|
51
|
+
}
|