-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.35 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.35 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
{
"name": "@33strategies/claudeflow",
"version": "2.0.0",
"description": "Workflow orchestration for AI-assisted development - seamless end-to-end feature development workflow",
"keywords": [
"claude",
"claude-code",
"workflow",
"orchestration",
"ai-assisted-development",
"cli",
"automation"
],
"author": {
"name": "Kenneth Priester",
"email": "33strategies@duck.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kennyjpowers/claude-flow"
},
"bugs": {
"url": "https://github.com/kennyjpowers/claude-flow/issues"
},
"homepage": "https://claudeflow.dev",
"publishConfig": {
"access": "public"
},
"bin": {
"claudeflow": "./bin/claudeflow.js"
},
"main": "./lib/index.js",
"files": [
"bin/",
"lib/",
".claude/",
"templates/",
"docs/",
"README.md",
"CLAUDE.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"update-notifier": "^7.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.2",
"semantic-release": "^25.0.2"
},
"scripts": {
"test": "echo 'Tests coming in Phase 2'",
"prepublishOnly": "node scripts/verify-files.js"
},
"type": "module"
}