-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·92 lines (92 loc) · 2.06 KB
/
package.json
File metadata and controls
executable file
·92 lines (92 loc) · 2.06 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
86
87
88
89
90
91
92
{
"name": "claude-conductor",
"version": "2.2.0",
"description": "Modular documentation framework for AI-assisted development with Claude Code",
"bin": {
"claude-conductor": "bin/init.js",
"claude-conduct": "bin/init.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm test",
"prepare": "husky"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.mjs": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"claude",
"claude code documentation",
"claude conductor",
"claude code framework",
"ai",
"vibe code framework",
"vibe coding",
"development",
"super basic studio",
"conductor"
],
"author": "Super Basic Studio, LLC (https://superbasic.studio)",
"license": "MIT",
"files": [
"templates/",
"bin/",
"README.md",
"CLAUDE.md",
"RESPONSE_STYLE_CONFIG.md"
],
"dependencies": {
"chalk": "4.1.2",
"commander": "11.1.0",
"fs-extra": "11.3.4",
"glob": "10.5.0"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"eslint": "9.39.4",
"globals": "17.4.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.5.2",
"prettier": "3.8.1"
},
"overrides": {
"brace-expansion": ">=1.1.13",
"picomatch": ">=2.3.2",
"minimatch": ">=3.1.5"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/superbasicstudio/claude-conductor.git"
},
"bugs": {
"url": "https://github.com/superbasicstudio/claude-conductor/issues"
},
"homepage": "https://github.com/superbasicstudio/claude-conductor#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/superbasicstudio"
},
{
"type": "patreon",
"url": "https://patreon.com/superbasicstudio"
}
]
}