-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.56 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.56 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": "agentflow",
"version": "0.1.23",
"description": "Orchestration system for long-running complex agent tasks using Cursor, OpenCode, or Claude Code as execution backends",
"type": "module",
"main": "bin/agentflow.mjs",
"bin": {
"agentflow": "bin/agentflow.mjs"
},
"engines": {
"node": ">=20"
},
"keywords": [
"agentflow",
"cursor",
"opencode",
"claude-code",
"agent-orchestration",
"workflow",
"cli",
"automation",
"checkpoint-resume",
"long-running"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pproject-github/agentflow.git"
},
"homepage": "https://github.com/pproject-github/agentflow#readme",
"bugs": {
"url": "https://github.com/pproject-github/agentflow/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"bin",
"agents",
"builtin",
"reference"
],
"scripts": {
"postinstall": "node bin/ensure-workspace-reference.mjs",
"build:web-ui": "cd builtin/web-ui && npm install && npm run build",
"build:website": "cd website && npm install && npm run build",
"dev:website": "cd website && npm run dev",
"preview:website": "cd website && npm run preview",
"prepack": "npm run build:web-ui"
},
"dependencies": {
"busboy": "^1.6.0",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"fflate": "^0.8.2",
"js-yaml": "^4.1.0",
"markdansi": "^0.2.1",
"ora": "^9.3.0",
"sharp": "^0.34.5",
"update-notifier": "^7.0.0"
}
}