-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.52 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
{
"name": "oc-dw",
"version": "0.3.2",
"description": "Seamless dynamic workflow orchestration for OpenCode. Install, setup, use inside OpenCode.",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"license": "MIT",
"bin": {
"oc-dw": "dist/src/cli.js"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./plugin": {
"types": "./dist/src/plugin.d.ts",
"import": "./dist/src/plugin.js"
}
},
"files": [
"dist/src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "npm run build && node --test dist/test/*.test.js",
"qa": "npm run build && node --test dist/test/*.test.js",
"prepack": "npm run build"
},
"dependencies": {
"@opencode-ai/plugin": "^1.15.12",
"@opencode-ai/sdk": "^1.15.12"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20"
},
"keywords": [
"opencode",
"dynamic-workflows",
"claude-code",
"ai",
"orchestration",
"multi-agent",
"plugin"
],
"author": "Timmy6942025",
"repository": {
"type": "git",
"url": "git+https://github.com/Timmy6942025/opencode-dynamic-workflows.git"
},
"bugs": {
"url": "https://github.com/Timmy6942025/opencode-dynamic-workflows/issues"
},
"homepage": "https://github.com/Timmy6942025/opencode-dynamic-workflows#readme"
}