tokenmaxx 0.0.0-alpha.0 → 0.0.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 +1 -1
- package/dist/index.js +523 -519
- package/package.json +64 -59
package/package.json
CHANGED
|
@@ -1,61 +1,66 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
2
|
+
"author": "Rubric Labs",
|
|
3
|
+
"bin": {
|
|
4
|
+
"tokenmaxx": "dist/index.js"
|
|
5
|
+
},
|
|
6
|
+
"dependencies": {
|
|
7
|
+
"@opentui/core": "^0.4.3",
|
|
8
|
+
"zod": "^4.0.0"
|
|
9
|
+
},
|
|
10
|
+
"description": "A local proxy that juggles rate limits across your Codex and Claude Code accounts — with live token-throughput analytics.",
|
|
11
|
+
"devDependencies": {
|
|
12
|
+
"@biomejs/biome": "^2.0.0",
|
|
13
|
+
"@rubriclab/config": "*",
|
|
14
|
+
"@rubriclab/package": "*",
|
|
15
|
+
"@types/bun": "^1.2.0",
|
|
16
|
+
"typescript": "^5.8.0"
|
|
17
|
+
},
|
|
18
|
+
"engines": {
|
|
19
|
+
"bun": ">=1.2.0"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"README.md",
|
|
24
|
+
"LICENSE"
|
|
25
|
+
],
|
|
26
|
+
"homepage": "https://tokenmaxx.sh",
|
|
27
|
+
"keywords": [
|
|
28
|
+
"analytics",
|
|
29
|
+
"claude-code",
|
|
30
|
+
"cli",
|
|
31
|
+
"codex",
|
|
32
|
+
"proxy",
|
|
33
|
+
"rate-limits",
|
|
34
|
+
"rubric",
|
|
35
|
+
"tokens"
|
|
36
|
+
],
|
|
37
|
+
"license": "gonuts",
|
|
38
|
+
"main": "dist/index.js",
|
|
39
|
+
"name": "tokenmaxx",
|
|
40
|
+
"preferGlobal": true,
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
},
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "https://github.com/RubricLab/tokenmaxx.git"
|
|
47
|
+
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"assets": "bun run assets:screens && bun run assets:flagship",
|
|
50
|
+
"assets:flagship": "bun run assets/flagship.ts",
|
|
51
|
+
"assets:screens": "bun run assets/render.ts",
|
|
52
|
+
"bleed": "bun x npm-check-updates -u",
|
|
53
|
+
"build": "bun run clean && bun build ./src/index.ts --target bun --outdir dist --external '@opentui/*' && chmod 755 dist/index.js",
|
|
54
|
+
"check": "bun run typecheck && bun x biome check .",
|
|
55
|
+
"clean": "rm -rf dist",
|
|
56
|
+
"dev": "bun run src/index.ts",
|
|
57
|
+
"format": "bun x biome check --write .",
|
|
58
|
+
"prepare": "bun x @rubriclab/package prepare",
|
|
59
|
+
"typecheck": "tsc --noEmit"
|
|
60
|
+
},
|
|
61
|
+
"simple-git-hooks": {
|
|
62
|
+
"post-commit": "bun x @rubriclab/package post-commit"
|
|
63
|
+
},
|
|
64
|
+
"type": "module",
|
|
65
|
+
"version": "0.0.2"
|
|
61
66
|
}
|