-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 804 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 804 Bytes
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
{
"name": "skill-dependency-graph",
"version": "1.0.0",
"description": "Automatically generates and maintains visual dependency graphs of OpenClaw skills showing execution paths and trigger relationships",
"main": "scripts/main.js",
"scripts": {
"start": "node scripts/main.js show-all",
"test": "node scripts/main.js --self-test",
"find-circular": "node scripts/main.js find-circular",
"export": "node scripts/main.js export --format json",
"text-tree": "node scripts/main.js text-tree"
},
"keywords": [
"openclaw",
"dependency-graph",
"skill-dependencies",
"visualization",
"graph",
"dependency-analysis"
],
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"glob": "^10.3.10",
"yaml": "^2.3.4"
}
}