-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.54 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
{
"name": "@openchamber/opencode-container-workspace",
"version": "0.1.0",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./src/plugin.js",
"types": "./src/plugin.d.ts",
"exports": {
".": {
"types": "./src/plugin.d.ts",
"import": "./src/plugin.js"
},
"./operations": {
"types": "./src/operations.d.ts",
"import": "./src/operations.js"
},
"./contracts": {
"types": "./src/contracts.d.ts",
"import": "./src/contracts.js"
}
},
"scripts": {
"build": "node --check src/plugin.js && node --check src/transport-shim.js && node --check src/contracts.js && node --check src/operations.js && node --check src/artifact.js && node --check src/snapshot.js && node --check src/egress-gateway.js && node --check src/label-id.js && node --check src/process.js && node --check src/state-store.js && node --check src/lifecycle.js && node --check src/metadata.js && node --check src/runtime-command.js && node --check src/providers/docker.js && node --check src/providers/kubernetes.js && node --check src/providers/apple-container.js",
"type-check": "tsc --noEmit",
"lint": "bun run build",
"test": "vitest run"
},
"dependencies": {
"@opencode-ai/plugin": "1.18.4"
},
"devDependencies": {
"typescript": "5.9.3",
"vitest": "^4.1.5",
"ws": "^8.18.3"
},
"files": [
"src/**/*.js",
"src/**/*.d.ts",
"!src/**/*.test.js",
"runtime-image/**",
"egress-image/**",
"package.json",
"README.md",
"LICENSE"
]
}