-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.23 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.23 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
{
"name": "skill-flow",
"version": "1.0.8",
"description": "Workflow-first management for AI agent skills. Group, project, and sync skills across multiple agents with explicit state tracking.",
"type": "module",
"main": "dist/cli.js",
"bin": {
"skill-flow": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"README.zh.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.tsx",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VintLin/skill-flow.git"
},
"keywords": [
"ai",
"agent",
"skills",
"workflow",
"claude",
"cursor",
"copilot",
"cli",
"management",
"git"
],
"author": "VintLin",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/VintLin/skill-flow/issues"
},
"homepage": "https://github.com/VintLin/skill-flow#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^14.0.3",
"ink": "^6.8.0",
"react": "^19.2.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}