tledger 0.1.2
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 +70 -0
- package/bin/token-ledger-terminal.mjs +693 -0
- package/bin/token-ledger-tui.mjs +95 -0
- package/bin/token-ledger.mjs +568 -0
- package/lib/token-ledger-collector.mjs +1248 -0
- package/package.json +43 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tledger",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "A local-only terminal dashboard for Codex token usage",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"codex",
|
|
7
|
+
"cli",
|
|
8
|
+
"terminal",
|
|
9
|
+
"tokens",
|
|
10
|
+
"usage",
|
|
11
|
+
"privacy"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://github.com/jskoiz/token-ledger#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/jskoiz/token-ledger/issues"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/jskoiz/token-ledger.git"
|
|
20
|
+
},
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=22.13.0"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"bin/",
|
|
26
|
+
"lib/",
|
|
27
|
+
"README.md"
|
|
28
|
+
],
|
|
29
|
+
"bin": {
|
|
30
|
+
"tledger": "bin/token-ledger.mjs"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"test": "node --test tests/*.test.mjs",
|
|
34
|
+
"test:cli": "node --test tests/token-ledger-cli.test.mjs",
|
|
35
|
+
"test:collector": "node --test tests/token-ledger-collector.test.mjs",
|
|
36
|
+
"demo": "node scripts/generate-demo-screenshot.mjs",
|
|
37
|
+
"prepublishOnly": "npm test"
|
|
38
|
+
},
|
|
39
|
+
"publishConfig": {
|
|
40
|
+
"access": "public"
|
|
41
|
+
},
|
|
42
|
+
"type": "module"
|
|
43
|
+
}
|