forked from webdevtodayjason/sub-agents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 2.95 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 2.95 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@lsendel/claude-agents",
"version": "1.3.1",
"description": "Supercharge Claude Code with specialized AI sub-agents for code review, testing, debugging, documentation & more. Now with process & standards management! Easy CLI tool to install, manage & create custom AI agents for enhanced development workflow",
"main": "src/index.js",
"type": "module",
"bin": {
"claude-agents": "bin/claude-agents"
},
"files": [
"src/**/*",
"bin/**/*",
"agents/**/*",
"commands/**/*",
"scripts/**/*",
"processes/**/*",
"standards/**/*",
"docs/**/*",
"README.md",
"LICENSE",
"CLAUDE.md",
"IMPROVEMENTS.md",
"CHANGELOG.md"
],
"scripts": {
"start": "node bin/claude-agents",
"test": "echo \"No tests configured\" && exit 0",
"test:coverage": "echo \"No test coverage configured\" && exit 0",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"format": "prettier --write src/**/*.js",
"check-sensitive": "node scripts/check-sensitive-files.js",
"audit": "npm audit",
"audit:fix": "npm audit fix",
"prepare": "node scripts/setup-hooks.js || true"
},
"keywords": [
"claude",
"claude-code",
"claude-ai",
"anthropic",
"ai-agents",
"ai-assistant",
"sub-agents",
"code-review",
"code-quality",
"automated-testing",
"test-automation",
"debugging",
"debug-tools",
"refactoring",
"documentation-generator",
"security-scanner",
"developer-tools",
"devtools",
"cli",
"cli-tool",
"productivity",
"automation",
"workflow-automation",
"code-analysis",
"ai-powered",
"llm",
"development-workflow",
"coding-assistant",
"pair-programming",
"software-development",
"process-management",
"coding-standards",
"best-practices",
"team-collaboration",
"development-processes"
],
"author": {
"name": "Claude Agents Team",
"email": "support@claude-agents.com",
"url": "https://claude-agents.com"
},
"contributors": [
"Claude Sub-Agents Contributors"
],
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.12",
"minimatch": "^10.0.3",
"ora": "^8.0.1",
"semver": "^7.7.2",
"yaml": "^2.3.4"
},
"devDependencies": {
"eslint": "^8.56.0",
"prettier": "^3.1.1"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lsendel/sub-agents.git"
},
"bugs": {
"url": "https://github.com/lsendel/sub-agents/issues"
},
"homepage": "https://github.com/lsendel/sub-agents#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/lsendel"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}