-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 1.86 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
79
80
81
82
83
84
85
{
"name": "flowboard",
"version": "5.0.4",
"description": "FlowBoard project workspaces, dashboard, and project-context hook for OpenClaw agents.",
"type": "module",
"license": "MIT",
"scripts": {
"setup": "node scripts/setup.mjs"
},
"homepage": "https://github.com/rasimme/FlowBoard",
"keywords": [
"openclaw",
"flowboard",
"project-management",
"multi-agent",
"hooks"
],
"repository": {
"type": "git",
"url": "https://github.com/rasimme/FlowBoard.git"
},
"openclaw": {
"build": {
"openclawVersion": "2026.6.6"
},
"install": {
"defaultChoice": "clawhub",
"clawhubSpec": "flowboard",
"minHostVersion": ">=2026.6.6"
},
"compat": {
"pluginApi": ">=2026.5.20"
},
"release": {
"publishToClawHub": true,
"publishToNpm": false
},
"extensions": [
"./openclaw/flowboard-plugin.js"
],
"hooks": [
"./hooks/project-context"
]
},
"files": [
"openclaw.plugin.json",
"README.md",
"LICENSE",
"CHANGELOG.md",
"SECURITY.md",
"CONTRIBUTING.md",
"llms.txt",
"openclaw/**",
"hooks/**",
"scripts/setup.mjs",
"snippets/**",
"templates/**",
"docs/**",
"dashboard/**",
".env.example",
"!dashboard/node_modules/**",
"!dashboard/dist/**",
"!dashboard/.env*",
"!dashboard/dashboard-data.json",
"!dashboard/.cloudflared/**",
"!**/*.db",
"!**/*.sqlite",
"!**/*.log",
"!docs/plans/**",
"!docs/reviews/**",
"!docs/dev/**",
"!docs/project-mode/legacy/**",
"!snippets/legacy/**",
"!dashboard/projects/**",
"!dashboard/tools/**",
"!dashboard/test-workspace*/**",
"!dashboard/test-*.js",
"!dashboard/test-*.mjs",
"!dashboard/test-fixtures/**",
"!dashboard/test-support/**",
"!**/*.db-wal",
"!**/*.db-shm",
"!**/.hzl/**"
]
}