forked from iii-hq/workers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.01 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
{
"name": "opencode",
"version": "0.1.8",
"private": true,
"description": "OpenCode as an iii worker: headless turns over the iii bus, raw events on opencode::events, AgentEvent frames on agent::events.",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.18.2",
"scripts": {
"build": "tsc -b",
"build:bundle": "node scripts/build-bundle.mjs",
"typecheck": "tsc -b --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run",
"start": "node dist/index.js",
"dev": "tsx src/index.ts"
},
"bin": {
"opencode-worker": "./dist/index.js"
},
"dependencies": {
"iii-sdk": "^0.21.6",
"yaml": "^2.6.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@types/node": "^22.10.0",
"esbuild": "^0.25.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}