-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.79 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": "@inkbox/opencode-plugin",
"version": "0.1.0",
"private": true,
"description": "Inkbox for opencode — give your agent an email address, a phone number (SMS/MMS + voice), iMessage, contacts, notes, and an encrypted credential vault.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"skills",
"agents",
"bin",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"bin": {
"inkbox-opencode": "bin/inkbox-opencode.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src tests scripts bin",
"format": "biome format --write src tests scripts bin"
},
"keywords": [
"opencode",
"opencode-plugin",
"inkbox",
"email",
"sms",
"imessage",
"phone",
"agent"
],
"repository": {
"type": "git",
"url": "git+https://github.com/inkbox-ai/opencode-plugin.git"
},
"homepage": "https://inkbox.ai",
"bugs": {
"url": "https://github.com/inkbox-ai/opencode-plugin/issues"
},
"engines": {
"opencode": ">=1.15.0 <1.19.0"
},
"dependencies": {
"@inkbox/sdk": ">=0.5.1 <1.0.0",
"@opencode-ai/sdk": ">=1.17.18 <1.19.0",
"ws": "^8.21.0",
"zod": "4.1.8"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0"
},
"peerDependenciesMeta": {
"@opencode-ai/plugin": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@opencode-ai/plugin": "1.17.18",
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"typescript": "^5.9.0",
"vitest": "^2.1.9"
}
}