-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.75 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
70
71
72
73
74
75
76
77
78
{
"name": "beflow",
"version": "0.2.4",
"description": "An AI-agent orchestration CLI that drives your issue tracker's backlog to shipped PRs.",
"keywords": [
"acp",
"agent",
"ai",
"automation",
"bun",
"cli",
"issue-tracker",
"linear",
"orchestration",
"plane"
],
"homepage": "https://github.com/corrm/beflow#readme",
"bugs": {
"url": "https://github.com/corrm/beflow/issues"
},
"license": "MIT",
"author": "CorrM (Islam Nofl)",
"repository": {
"type": "git",
"url": "git+https://github.com/corrm/beflow.git"
},
"bin": {
"beflow": "./src/cli.ts"
},
"files": [
"src",
"config.example.json",
"config.schema.json",
"README.md",
"LICENSE"
],
"type": "module",
"module": "src/index.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"check": "oxfmt --check . && oxlint && tsc --noEmit && bun test",
"test": "bun test",
"start": "bun src/cli.ts",
"build": "bun build --compile --outfile dist/beflow ./src/cli.ts",
"gen:schema": "bun scripts/gen-config-schema.ts",
"prepare": "husky"
},
"dependencies": {
"@clack/prompts": "^1.5.1",
"@linear/sdk": "^86.0.0",
"citty": "^0.2.2",
"yaml": "^2.9.0",
"zod": "^3.23.8"
},
"devDependencies": {
"bun-types": "^1.1.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"oxfmt": "^0.54.0",
"oxlint": "^1.69.0",
"oxlint-tsgolint": "^0.23.0",
"typescript": "^6.0.3",
"zod-to-json-schema": "^3.25.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,jsonc}": "oxfmt"
},
"engines": {
"bun": ">=1.0.0"
}
}