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