-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.72 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
{
"name": "opencode-plugin-flow",
"version": "4.1.16",
"description": "Stateful planning and execution workflow plugin for OpenCode",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ddv1982/flow-opencode.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"bin": {
"opencode-plugin-flow": "./dist/cli.js"
},
"files": [
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "bun run build:plugin && bun run build:cli && bun run build:types",
"build:plugin": "bun build --target=node --outdir=./dist --entry-naming=index.js --external=@opencode-ai/plugin --external=zod --minify --drop=console --sourcemap=external ./src/index.ts",
"build:cli": "bun build --target=node --outdir=./dist --entry-naming=cli.js --banner='#!/usr/bin/env node' --minify ./src/cli.ts",
"build:types": "tsc -p tsconfig.types.json",
"lint": "bunx biome check src tests --files-ignore-unknown=true --vcs-use-ignore-file=true",
"package:smoke": "bun test tests/package-smoke.test.ts",
"test": "bun test tests",
"typecheck": "tsc --noEmit",
"uninstall:opencode": "bun run ./src/cli.ts uninstall",
"check": "bun run typecheck && bun run lint && bun run build && bun run test"
},
"keywords": [
"opencode",
"plugin",
"workflow",
"planning",
"execution"
],
"author": "Douwe de Vries",
"license": "MIT",
"peerDependencies": {
"@opencode-ai/plugin": "1.17.3"
},
"dependencies": {
"zod": "4.1.8"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@opencode-ai/plugin": "1.17.3",
"bun-types": "latest",
"typescript": "^6.0.2"
}
}