-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.03 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
{
"name": "opencode-flow-engine",
"version": "1.0.0",
"description": "OpenCode plugin engine - SFlow (OpenSpec + Superpowers) and IFlow (GSD-style) workflow orchestration",
"type": "module",
"main": "packages/plugin-infra/dist/index.js",
"types": "packages/plugin-infra/dist/index.d.ts",
"bin": {
"flow-engine": "./bin/flow-engine.js",
"sflow": "./bin/flow-engine.js"
},
"exports": {
".": {
"import": "./packages/plugin-infra/dist/index.js",
"types": "./packages/plugin-infra/dist/index.d.ts"
},
"./sflow": {
"import": "./sflow-plugin.js",
"types": "./sflow-plugin.d.ts"
},
"./iflow": {
"import": "./iflow-plugin.js",
"types": "./iflow-plugin.d.ts"
}
},
"scripts": {
"build": "bun run clean && bun run build:core && bun run build:shared && bun run build:adapter",
"clean": "rm -rf packages/core/dist packages/core/tsconfig.tsbuildinfo packages/shared/dist packages/shared/tsconfig.tsbuildinfo packages/plugin-infra/dist",
"build:core": "cd packages/core && bun run build",
"build:adapter": "bun build --target=node --outdir=packages/plugin-infra/dist --external=@opencode-ai/sdk --external=@opencode-ai/plugin packages/plugin-infra/src/index.ts",
"build:shared": "cd packages/shared && bun run build",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "npx @biomejs/biome check .",
"format": "npx @biomejs/biome format --write ."
},
"workspaces": [
"packages/core",
"packages/shared",
"packages/plugin-infra"
],
"dependencies": {
"@opencode-ai/plugin": "latest",
"@opencode-ai/sdk": "latest",
"js-yaml": "^4.1.0",
"nodejieba": "^3.5.8",
"zod": "^3.23.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"typescript": "^5.4.0"
},
"engines": {
"bun": ">=1.0.0"
},
"license": "MIT",
"keywords": [
"opencode",
"plugin",
"sflow",
"iflow",
"workflow",
"openspec",
"superpowers",
"gsd"
]
}