-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.49 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.49 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
{
"name": "@bradtaylorsf/alpha-loop",
"version": "2.2.0",
"description": "Agent-agnostic automated development loop: Plan → Build → Test → Review → Ship",
"type": "module",
"packageManager": "pnpm@9.0.0",
"bin": {
"alpha-loop": "./dist/cli.js"
},
"files": [
"dist",
"templates",
"agents",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/cli.js",
"dev": "tsx src/cli.ts",
"test": "jest --runInBand",
"test:unit": "jest --runInBand",
"test:watch": "jest --watch",
"prepublishOnly": "pnpm build",
"release": "node scripts/deploy.mjs",
"release:watch": "node scripts/release-watch.mjs"
},
"keywords": [
"ai",
"agent",
"automation",
"development",
"loop",
"claude",
"codex",
"github"
],
"engines": {
"node": ">=20"
},
"author": "Bradley Taylor",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bradtaylorsf/alpha-loop.git"
},
"homepage": "https://github.com/bradtaylorsf/alpha-loop#readme",
"bugs": {
"url": "https://github.com/bradtaylorsf/alpha-loop/issues"
},
"dependencies": {
"@inquirer/prompts": "^8.3.2",
"commander": "^14.0.3",
"yaml": "^2.8.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsx": "^4.6.0",
"typescript": "^5.2.2"
}
}