ralph-ui 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +404 -0
- package/bin/ralph-ui.js +1115 -0
- package/package.json +130 -0
package/package.json
ADDED
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ralph-ui",
|
|
3
|
+
"version": "0.1.5",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Orchestrate autonomous AI coding agents with the Ralph Wiggum Loop technique",
|
|
6
|
+
"author": "Dario Valles",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/dario-valles/Ralph-UI.git"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/dario-valles/Ralph-UI#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/dario-valles/Ralph-UI/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"ai",
|
|
18
|
+
"autonomous-agents",
|
|
19
|
+
"claude",
|
|
20
|
+
"claude-code",
|
|
21
|
+
"coding-assistant",
|
|
22
|
+
"developer-tools",
|
|
23
|
+
"llm",
|
|
24
|
+
"ralph-wiggum-loop"
|
|
25
|
+
],
|
|
26
|
+
"bin": {
|
|
27
|
+
"ralph-ui": "./bin/ralph-ui.js"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"bin/ralph-ui.js"
|
|
31
|
+
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"dev": "vite",
|
|
34
|
+
"build": "tsc && vite build",
|
|
35
|
+
"preview": "vite preview",
|
|
36
|
+
"server:build": "cd server && cargo build --release",
|
|
37
|
+
"server": "cd server && cargo run --release -- --port 3421",
|
|
38
|
+
"server:dev": "cd server && cargo run -- --port 3421",
|
|
39
|
+
"server:dev:token": "cd server && RALPH_SERVER_TOKEN=secure-token cargo run -- --port 3421",
|
|
40
|
+
"server:kill": "pkill -f 'ralph-ui' || true; lsof -ti:3421 | xargs kill -9 2>/dev/null || true",
|
|
41
|
+
"typecheck": "tsc --noEmit",
|
|
42
|
+
"lint": "eslint . --max-warnings 0",
|
|
43
|
+
"lint:fix": "eslint . --fix",
|
|
44
|
+
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
|
|
45
|
+
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
|
|
46
|
+
"test": "vitest",
|
|
47
|
+
"test:ui": "vitest --ui",
|
|
48
|
+
"test:run": "vitest run",
|
|
49
|
+
"test:coverage": "vitest run --coverage",
|
|
50
|
+
"test:watch": "vitest --watch",
|
|
51
|
+
"cargo:test": "cd server && cargo test",
|
|
52
|
+
"cargo:build": "cd server && cargo build --release",
|
|
53
|
+
"release:build": "bun run build && bun run cargo:build",
|
|
54
|
+
"release:local": "bun run release:build && mkdir -p ~/.ralph-ui/bin && cp server/target/release/ralph-ui ~/.ralph-ui/bin/ && echo 'local-dev' > ~/.ralph-ui/version.txt && echo '✓ Installed to ~/.ralph-ui/bin/ralph-ui'",
|
|
55
|
+
"release:test": "bun run release:local && node bin/ralph-ui.js --skip-update",
|
|
56
|
+
"release:pack": "bun run release:build && npm pack",
|
|
57
|
+
"release:npx": "bun run release:local && node bin/ralph-ui.js --skip-update",
|
|
58
|
+
"release:version": "npm version",
|
|
59
|
+
"release:tag": "git push && git push --tags",
|
|
60
|
+
"release:npm": "npm publish --access public"
|
|
61
|
+
},
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@radix-ui/react-avatar": "^1.1.11",
|
|
64
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
65
|
+
"@radix-ui/react-collapsible": "^1.1.12",
|
|
66
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
67
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
68
|
+
"@radix-ui/react-progress": "^1.1.8",
|
|
69
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
70
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
71
|
+
"@radix-ui/react-slider": "^1.3.6",
|
|
72
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
73
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
74
|
+
"@xterm/addon-fit": "^0.11.0",
|
|
75
|
+
"@xterm/addon-web-links": "^0.12.0",
|
|
76
|
+
"@xterm/addon-webgl": "^0.19.0",
|
|
77
|
+
"@xterm/xterm": "^6.0.0",
|
|
78
|
+
"ansi-to-react": "^6.1.6",
|
|
79
|
+
"class-variance-authority": "^0.7.1",
|
|
80
|
+
"clsx": "^2.1.1",
|
|
81
|
+
"lucide-react": "^0.562.0",
|
|
82
|
+
"motion": "^12.29.0",
|
|
83
|
+
"react": "^19.1.0",
|
|
84
|
+
"react-dom": "^19.1.0",
|
|
85
|
+
"react-markdown": "^10.1.0",
|
|
86
|
+
"react-router-dom": "^7.12.0",
|
|
87
|
+
"remark-gfm": "^4.0.1",
|
|
88
|
+
"tailwind-merge": "^3.4.0",
|
|
89
|
+
"vaul": "^1.1.2",
|
|
90
|
+
"workbox-cacheable-response": "^7.4.0",
|
|
91
|
+
"workbox-expiration": "^7.4.0",
|
|
92
|
+
"workbox-routing": "^7.4.0",
|
|
93
|
+
"workbox-strategies": "^7.4.0",
|
|
94
|
+
"zustand": "^5.0.10"
|
|
95
|
+
},
|
|
96
|
+
"devDependencies": {
|
|
97
|
+
"@eslint/js": "^9.39.2",
|
|
98
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
99
|
+
"@testing-library/react": "^16.3.1",
|
|
100
|
+
"@testing-library/user-event": "^14.6.1",
|
|
101
|
+
"@types/eslint__js": "^9.14.0",
|
|
102
|
+
"@types/node": "^25.0.9",
|
|
103
|
+
"@types/react": "^19.1.8",
|
|
104
|
+
"@types/react-dom": "^19.1.6",
|
|
105
|
+
"@vitejs/plugin-react": "^4.6.0",
|
|
106
|
+
"@vitest/coverage-v8": "^4.0.17",
|
|
107
|
+
"@vitest/ui": "^4.0.17",
|
|
108
|
+
"autoprefixer": "^10.4.23",
|
|
109
|
+
"axe-core": "^4.11.1",
|
|
110
|
+
"babel-plugin-react-compiler": "^1.0.0",
|
|
111
|
+
"eslint": "^9.39.2",
|
|
112
|
+
"eslint-config-prettier": "^10.1.8",
|
|
113
|
+
"eslint-plugin-react": "^7.37.5",
|
|
114
|
+
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
|
|
115
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
116
|
+
"eslint-plugin-react-refresh": "^0.4.26",
|
|
117
|
+
"globals": "^17.0.0",
|
|
118
|
+
"jest-axe": "^10.0.0",
|
|
119
|
+
"jsdom": "^27.4.0",
|
|
120
|
+
"postcss": "^8.5.6",
|
|
121
|
+
"prettier": "^3.8.0",
|
|
122
|
+
"rollup-plugin-visualizer": "^6.0.5",
|
|
123
|
+
"tailwindcss": "^4.1.18",
|
|
124
|
+
"typescript": "~5.8.3",
|
|
125
|
+
"typescript-eslint": "^8.53.0",
|
|
126
|
+
"vite": "^7.0.4",
|
|
127
|
+
"vite-plugin-pwa": "^1.2.0",
|
|
128
|
+
"vitest": "^4.0.17"
|
|
129
|
+
}
|
|
130
|
+
}
|