@yoinkingfish/codecarto 0.1.2 → 0.1.6
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/commands/default.d.ts +2 -1
- package/dist/commands/default.d.ts.map +1 -1
- package/dist/commands/default.js +1 -1
- package/dist/commands/default.js.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/server/index.d.ts +1 -0
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +63 -1
- package/dist/server/index.js.map +1 -1
- package/dist/utils/pipeline.d.ts.map +1 -1
- package/dist/utils/pipeline.js +3 -3
- package/dist/utils/pipeline.js.map +1 -1
- package/package.json +10 -7
- package/visualizer/assets/3d-force-graph-D5rAZIXy.js +5280 -0
- package/visualizer/assets/3d-force-graph-D5rAZIXy.js.map +1 -0
- package/visualizer/assets/index-C5SfP5c7.css +1 -0
- package/visualizer/assets/index-CDTlxZBC.js +87 -0
- package/visualizer/assets/index-CDTlxZBC.js.map +1 -0
- package/visualizer/index.html +15 -0
- package/visualizer/vite.svg +1 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>CodeCarto — See your codebase</title>
|
|
7
|
+
<meta name="description" content="CodeCarto visualizes your repository as an interactive 3D architecture map — local, fast, private." />
|
|
8
|
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
9
|
+
<script type="module" crossorigin src="/assets/index-CDTlxZBC.js"></script>
|
|
10
|
+
<link rel="stylesheet" crossorigin href="/assets/index-C5SfP5c7.css">
|
|
11
|
+
</head>
|
|
12
|
+
<body>
|
|
13
|
+
<div id="root"></div>
|
|
14
|
+
</body>
|
|
15
|
+
</html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" rx="6" fill="#050505"/><text x="50%" y="54%" text-anchor="middle" font-family="monospace" font-size="10" font-weight="700" fill="#00d9ff">CC</text></svg>
|