-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"name": "create-dual-agent-loop",
"version": "0.3.0",
"description": "Scaffold the Builder/Judge dual-agent collaboration protocol into any project. Structured SDLC with quality gates for Claude Code and Codex.",
"type": "module",
"main": "src/index.js",
"bin": {
"create-dual-agent-loop": "./bin/create-dual-agent-loop.js"
},
"files": [
"bin/",
"src/",
"LICENSE",
"README.md"
],
"scripts": {
"scaffold-self": "node scripts/scaffold-self.js",
"test": "node --test src/*.test.js src/**/*.test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"license:check": "license-checker --production --onlyAllow \"MIT;ISC;BSD-2-Clause;BSD-3-Clause;Apache-2.0;0BSD\""
},
"keywords": [
"claude-code",
"codex",
"agent",
"dual-agent",
"builder-judge",
"sdlc",
"spec-driven-development",
"ai-coding",
"create"
],
"engines": {
"node": ">=20.19.0"
},
"author": "",
"license": "MIT",
"dependencies": {
"enquirer": "^2.4.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"license-checker": "^25.0.1",
"prettier": "^3.8.1"
}
}