-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.18 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.18 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
{
"name": "agentic-loop",
"version": "3.31.0",
"description": "Autonomous AI coding loop - PRD-driven development with Claude Code",
"author": "Allie Jones <allie@allthrive.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/allierays/agentic-loop"
},
"homepage": "https://github.com/allierays/agentic-loop#readme",
"bugs": {
"url": "https://github.com/allierays/agentic-loop/issues"
},
"keywords": [
"ai",
"agentic",
"autonomous",
"claude",
"claude-code",
"coding-agent",
"prd",
"ralph",
"ai-development",
"code-generation"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"agentic-loop": "./bin/agentic-loop.sh",
"ralph": "./bin/ralph.sh",
"vibe-check": "./bin/vibe-check.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"bin",
"ralph",
"templates",
".claude",
".pre-commit-hooks.yaml"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"test:run": "vitest run",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"postinstall": "./bin/postinstall.sh",
"release": "npm version patch && git push && git push --tags && npm publish",
"release:minor": "npm version minor && git push && git push --tags && npm publish",
"release:major": "npm version major && git push && git push --tags && npm publish",
"loopgram": "tsx src/loopgram/index.ts",
"loopgram:bg": "nohup npm run loopgram > .ralph/loopgram.log 2>&1 &"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"playwright": ">=1.40.0"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
}
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.0",
"agentic-loop": "^3.19.0",
"telegraf": "^4.16.0",
"tsx": "^4.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"eslint": "^9.0.0",
"playwright": "^1.40.0",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
}
}