ccviz 0.1.0 → 0.2.0
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/dist/{chunk-KVXQKWK4.js → chunk-AQM3FQFJ.js} +26 -3
- package/dist/cli.js +1 -1
- package/dist/server/index.js +1 -1
- package/dist/ui/assets/index-CSxlwiwa.css +1 -0
- package/dist/ui/assets/index-D5ZG06Yx.js +70 -0
- package/dist/ui/index.html +4 -4
- package/package.json +24 -6
- package/dist/ui/assets/index-BsUdH75x.js +0 -133
- package/dist/ui/assets/index-CHB0LFGP.css +0 -1
package/dist/ui/index.html
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
-
<title>ccviz
|
|
7
|
-
<script type="module" crossorigin src="/assets/index-
|
|
8
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
6
|
+
<title>ccviz</title>
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-D5ZG06Yx.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="/assets/index-CSxlwiwa.css">
|
|
9
9
|
</head>
|
|
10
|
-
<body
|
|
10
|
+
<body>
|
|
11
11
|
<div id="root"></div>
|
|
12
12
|
</body>
|
|
13
13
|
</html>
|
package/package.json
CHANGED
|
@@ -1,20 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccviz",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "CLI tool to visualize Claude Code conversations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"ccviz": "dist/cli.js"
|
|
8
8
|
},
|
|
9
|
-
"files": [
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/"
|
|
11
|
+
],
|
|
10
12
|
"scripts": {
|
|
11
13
|
"dev": "concurrently \"tsx watch src/cli.ts -- --dev\" \"vite --config src/ui/vite.config.ts\"",
|
|
12
14
|
"build": "tsup && vite build --config src/ui/vite.config.ts",
|
|
13
15
|
"start": "node dist/cli.js"
|
|
14
16
|
},
|
|
15
|
-
"keywords": [
|
|
17
|
+
"keywords": [
|
|
18
|
+
"claude",
|
|
19
|
+
"claude-code",
|
|
20
|
+
"visualization",
|
|
21
|
+
"mcp"
|
|
22
|
+
],
|
|
16
23
|
"license": "MIT",
|
|
17
24
|
"devDependencies": {
|
|
25
|
+
"@tailwindcss/vite": "^4.0.0",
|
|
18
26
|
"@types/express": "^5.0.0",
|
|
19
27
|
"@types/node": "^22.0.0",
|
|
20
28
|
"@types/react": "^19.0.0",
|
|
@@ -22,19 +30,29 @@
|
|
|
22
30
|
"@vitejs/plugin-react": "^4.3.0",
|
|
23
31
|
"concurrently": "^9.0.0",
|
|
24
32
|
"tailwindcss": "^4.0.0",
|
|
25
|
-
"@tailwindcss/vite": "^4.0.0",
|
|
26
33
|
"tsup": "^8.0.0",
|
|
27
34
|
"tsx": "^4.0.0",
|
|
28
35
|
"typescript": "^5.6.0",
|
|
29
36
|
"vite": "^6.0.0"
|
|
30
37
|
},
|
|
31
38
|
"dependencies": {
|
|
39
|
+
"@visx/axis": "^3.12.0",
|
|
40
|
+
"@visx/curve": "^3.12.0",
|
|
41
|
+
"@visx/event": "^3.12.0",
|
|
42
|
+
"@visx/gradient": "^3.12.0",
|
|
43
|
+
"@visx/grid": "^3.12.0",
|
|
44
|
+
"@visx/group": "^3.12.0",
|
|
45
|
+
"@visx/pattern": "^3.12.0",
|
|
46
|
+
"@visx/responsive": "^3.12.0",
|
|
47
|
+
"@visx/scale": "^3.12.0",
|
|
48
|
+
"@visx/shape": "^3.12.0",
|
|
49
|
+
"@visx/text": "^3.12.0",
|
|
50
|
+
"@visx/tooltip": "^3.12.0",
|
|
32
51
|
"commander": "^13.0.0",
|
|
33
52
|
"express": "^5.0.0",
|
|
34
53
|
"open": "^10.0.0",
|
|
35
54
|
"react": "^19.0.0",
|
|
36
55
|
"react-dom": "^19.0.0",
|
|
37
|
-
"react-router-dom": "^7.0.0"
|
|
38
|
-
"recharts": "^2.15.0"
|
|
56
|
+
"react-router-dom": "^7.0.0"
|
|
39
57
|
}
|
|
40
58
|
}
|