tokmon 0.16.0 → 0.17.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 +1 -1
- package/dist/{chunk-ZPH4754N.js → chunk-TLE24LIH.js} +148 -2
- package/dist/{chunk-Z7JLP2Y2.js → chunk-ZZ7DIK3O.js} +15 -12
- package/dist/cli.js +3 -3
- package/dist/{server-NO7JYH7U.js → server-UPX3ANBP.js} +2 -2
- package/dist/web/assets/{index-C554oXd_.css → index-B-HEpWCR.css} +1 -1
- package/dist/web/assets/index-aha2Tekh.js +113 -0
- package/dist/web/index.html +2 -2
- package/dist/{web-KQUELAT7.js → web-23FJCFDS.js} +2 -2
- package/package.json +2 -2
- package/dist/web/assets/index-CsB3nZ9z.js +0 -113
package/dist/web/index.html
CHANGED
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
// Apply saved theme before first paint to avoid a flash. Default: dark.
|
|
12
12
|
try { if (localStorage.getItem('tokmon-theme') === 'light') document.documentElement.classList.add('light') } catch (e) {}
|
|
13
13
|
</script>
|
|
14
|
-
<script type="module" crossorigin src="./assets/index-
|
|
15
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
14
|
+
<script type="module" crossorigin src="./assets/index-aha2Tekh.js"></script>
|
|
15
|
+
<link rel="stylesheet" crossorigin href="./assets/index-B-HEpWCR.css">
|
|
16
16
|
</head>
|
|
17
17
|
<body>
|
|
18
18
|
<div id="root"></div>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
startWebServer
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-ZZ7DIK3O.js";
|
|
5
5
|
import {
|
|
6
6
|
flushDisk,
|
|
7
7
|
loadConfig
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-TLE24LIH.js";
|
|
9
9
|
|
|
10
10
|
// src/web/open.ts
|
|
11
11
|
import { spawn } from "child_process";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tokmon",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Terminal dashboard for Claude Code, Codex,
|
|
3
|
+
"version": "0.17.0",
|
|
4
|
+
"description": "Terminal + web dashboard for Claude Code, Codex, Cursor, opencode, pi, Copilot, Gemini & more — usage, limits, and costs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"tokmon": "dist/cli.js"
|