mumei-dashboard 0.1.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/README.md +87 -0
- package/bin/mumei-dashboard.mjs +35 -0
- package/dist/assets/index-Di4cDSr-.css +1 -0
- package/dist/assets/index-GPSOlpmP.js +49 -0
- package/dist/favicon.svg +5 -0
- package/dist/index.html +16 -0
- package/dist/mumei-mascot.png +0 -0
- package/dist/server/index.js +2040 -0
- package/dist/server/index.js.map +1 -0
- package/package.json +83 -0
package/dist/favicon.svg
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="none" aria-hidden="true">
|
|
2
|
+
<rect width="32" height="32" rx="6" fill="oklch(0.135 0 0)" />
|
|
3
|
+
<path d="M8 22 V10 L12 16 L16 10 V22" stroke="oklch(0.7 0.18 280)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" fill="none" />
|
|
4
|
+
<circle cx="22" cy="20" r="2.5" fill="oklch(0.7 0.18 165)" />
|
|
5
|
+
</svg>
|
package/dist/index.html
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<meta name="theme-color" content="#0a0a0b" media="(prefers-color-scheme: dark)" />
|
|
8
|
+
<meta name="theme-color" content="#fafafa" media="(prefers-color-scheme: light)" />
|
|
9
|
+
<title>mumei dashboard</title>
|
|
10
|
+
<script type="module" crossorigin src="/assets/index-GPSOlpmP.js"></script>
|
|
11
|
+
<link rel="stylesheet" crossorigin href="/assets/index-Di4cDSr-.css">
|
|
12
|
+
</head>
|
|
13
|
+
<body class="bg-background text-foreground antialiased">
|
|
14
|
+
<div id="root"></div>
|
|
15
|
+
</body>
|
|
16
|
+
</html>
|
|
Binary file
|