-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.95 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.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
{
"name": "wiggum-cli",
"version": "0.18.3",
"description": "AI agent CLI for spec-driven feature loops with Claude Code and Codex",
"type": "module",
"main": "dist/index.js",
"files": [
"dist",
"bin",
"src/templates",
"LICENSE",
"README.md"
],
"bin": {
"wiggum": "bin/ralph.js"
},
"scripts": {
"build": "tsc && npm run copy-templates",
"copy-templates": "cp -r src/templates dist/",
"dev": "tsc --watch",
"start": "node bin/ralph.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"e2e:bridge": "tsx e2e/bridge/server.ts",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"cli",
"ai-agent",
"autonomous-coding",
"spec-generation",
"feature-specs",
"feature-loop",
"backlog-automation",
"claude-code",
"codex",
"developer-tools",
"terminal-ui",
"tech-stack-detection",
"ralph-loop",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/federiconeri/wiggum-cli"
},
"author": "Wiggum CLI Contributors",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@ai-sdk/anthropic": "^3.0.15",
"@ai-sdk/openai": "^3.0.12",
"@braintrust/otel": "^0.2.0",
"@upstash/context7-tools-ai-sdk": "^0.2.1",
"ai": "^6.0.41",
"braintrust": "^2.0.2",
"cfonts": "^3.2.0",
"commander": "^12.1.0",
"ink": "^5.2.1",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"picocolors": "^1.0.0",
"react": "^18.3.1",
"zod": "^4.3.5"
},
"overrides": {
"minimatch": ">=10.2.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^19.2.9",
"@types/ws": "^8.5.10",
"@vitest/coverage-v8": "^4.0.18",
"ink-testing-library": "^4.0.0",
"node-pty": "^1.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vitest": "^4.0.17",
"ws": "^8.16.0"
},
"engines": {
"node": ">=18.0.0"
}
}