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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/dist/index.js +523 -519
  3. package/package.json +64 -59
package/package.json CHANGED
@@ -1,61 +1,66 @@
1
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
- }
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
  }