ralph-dashboard 2.3.8
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/README.md +139 -0
- package/dist/assets/index-C-V2s1hf.css +1 -0
- package/dist/assets/index-DaZE5Zmz.js +54 -0
- package/dist/index.html +18 -0
- package/dist/server/index.js +1419 -0
- package/package.json +70 -0
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ralph-dashboard",
|
|
3
|
+
"version": "2.3.8",
|
|
4
|
+
"description": "Web dashboard for Ralph Wiggum loops - view active and archived sessions",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"ralph-dashboard": "./dist/server/index.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/server/index.js",
|
|
10
|
+
"scripts": {
|
|
11
|
+
"dev": "concurrently \"bun run dev:vite\" \"bun run dev:server\"",
|
|
12
|
+
"dev:server": "bun --watch server/index.ts --port 3847 --host 0.0.0.0",
|
|
13
|
+
"build": "bun run build:frontend && bun run build:server",
|
|
14
|
+
"build:frontend": "tsc -b && vite build",
|
|
15
|
+
"build:server": "bun build server/index.ts --outdir dist/server --target bun --packages external",
|
|
16
|
+
"preview": "vite preview",
|
|
17
|
+
"start": "bun run server/index.ts",
|
|
18
|
+
"prepublishOnly": "bun run build && bun run test",
|
|
19
|
+
"test": "vitest run",
|
|
20
|
+
"test:watch": "vitest",
|
|
21
|
+
"test:coverage": "vitest run --coverage",
|
|
22
|
+
"test:e2e": "playwright test",
|
|
23
|
+
"test:e2e:ui": "playwright test --ui",
|
|
24
|
+
"test:e2e:coverage": "COVERAGE=true playwright test",
|
|
25
|
+
"test:coverage:combined": "COVERAGE=true bun run test:coverage && COVERAGE=true bun run test:e2e && node scripts/merge-coverage.mjs coverage/coverage-final.json coverage/coverage-final.json coverage/e2e/coverage-final.json",
|
|
26
|
+
"typecheck": "tsc --noEmit",
|
|
27
|
+
"lint": "eslint src server --ext .ts,.tsx",
|
|
28
|
+
"dev:vite": "vite --host 0.0.0.0"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@tanstack/react-query": "^5.60.0",
|
|
32
|
+
"react": "^19.0.0",
|
|
33
|
+
"react-dom": "^19.0.0"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@codecov/vite-plugin": "^1.9.1",
|
|
37
|
+
"@playwright/test": "^1.57.0",
|
|
38
|
+
"@testing-library/jest-dom": "^6.6.0",
|
|
39
|
+
"@testing-library/react": "^16.1.0",
|
|
40
|
+
"@testing-library/user-event": "^14.6.1",
|
|
41
|
+
"@types/bun": "^1.1.14",
|
|
42
|
+
"@types/node": "^22.10.0",
|
|
43
|
+
"@types/react": "^19.0.0",
|
|
44
|
+
"@types/react-dom": "^19.0.0",
|
|
45
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
46
|
+
"@vitest/coverage-v8": "^2.1.0",
|
|
47
|
+
"autoprefixer": "^10.4.20",
|
|
48
|
+
"concurrently": "^9.2.1",
|
|
49
|
+
"eslint": "^9.16.0",
|
|
50
|
+
"jsdom": "^25.0.0",
|
|
51
|
+
"monocart-coverage-reports": "^2.12.9",
|
|
52
|
+
"postcss": "^8.4.49",
|
|
53
|
+
"tailwindcss": "^3.4.0",
|
|
54
|
+
"typescript": "^5.7.0",
|
|
55
|
+
"vite": "^6.0.0",
|
|
56
|
+
"vite-plugin-istanbul": "^7.2.1",
|
|
57
|
+
"vitest": "^2.1.0"
|
|
58
|
+
},
|
|
59
|
+
"files": [
|
|
60
|
+
"dist"
|
|
61
|
+
],
|
|
62
|
+
"repository": {
|
|
63
|
+
"type": "git",
|
|
64
|
+
"url": "git+https://github.com/teknologist/claude-ralph-wiggum-pro.git"
|
|
65
|
+
},
|
|
66
|
+
"publishConfig": {
|
|
67
|
+
"access": "public"
|
|
68
|
+
},
|
|
69
|
+
"license": "MIT"
|
|
70
|
+
}
|