@arraystar/tokenscope 0.1.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 +87 -0
- package/bun.lock +1170 -0
- package/components.json +25 -0
- package/eslint.config.js +23 -0
- package/index.html +13 -0
- package/package.json +46 -0
- package/public/data.json +41 -0
- package/public/favicon.svg +1 -0
- package/public/icons.svg +24 -0
- package/src/App.css +184 -0
- package/src/App.tsx +98 -0
- package/src/PricingContext.tsx +131 -0
- package/src/assets/hero.png +0 -0
- package/src/assets/react.svg +1 -0
- package/src/assets/vite.svg +1 -0
- package/src/cli.ts +98 -0
- package/src/components/Overview.tsx +468 -0
- package/src/components/PricingSheet.tsx +209 -0
- package/src/components/SessionDetail.tsx +244 -0
- package/src/components/ui/badge.tsx +52 -0
- package/src/components/ui/button.tsx +58 -0
- package/src/components/ui/card.tsx +103 -0
- package/src/components/ui/input.tsx +20 -0
- package/src/components/ui/separator.tsx +23 -0
- package/src/components/ui/sheet.tsx +138 -0
- package/src/components/ui/sidebar.tsx +721 -0
- package/src/components/ui/skeleton.tsx +13 -0
- package/src/components/ui/table.tsx +114 -0
- package/src/components/ui/tooltip.tsx +64 -0
- package/src/data.ts +90 -0
- package/src/hooks/use-mobile.ts +19 -0
- package/src/i18n.tsx +148 -0
- package/src/index.css +138 -0
- package/src/lib/utils.ts +6 -0
- package/src/main.tsx +10 -0
- package/src/parser/claude.ts +225 -0
- package/src/parser/codex.ts +181 -0
- package/src/parser/index.ts +83 -0
- package/src/parser/types.ts +35 -0
- package/src/pricing.ts +139 -0
- package/src/types.ts +56 -0
- package/tsconfig.app.json +30 -0
- package/tsconfig.json +13 -0
- package/tsconfig.node.json +26 -0
- package/vite.config.ts +13 -0
package/src/types.ts
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
export interface TurnData {
|
|
2
|
+
user: string;
|
|
3
|
+
time: string;
|
|
4
|
+
input: number;
|
|
5
|
+
output: number;
|
|
6
|
+
cache_read: number;
|
|
7
|
+
cache_write: number;
|
|
8
|
+
total: number;
|
|
9
|
+
cost: number;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export interface SessionData {
|
|
13
|
+
source?: "claude" | "codex";
|
|
14
|
+
project: string;
|
|
15
|
+
sid: string;
|
|
16
|
+
date: string;
|
|
17
|
+
first_ts: string;
|
|
18
|
+
stats: {
|
|
19
|
+
input: number;
|
|
20
|
+
output: number;
|
|
21
|
+
cache_read: number;
|
|
22
|
+
cache_write: number;
|
|
23
|
+
total: number;
|
|
24
|
+
cost: number;
|
|
25
|
+
msgs: number;
|
|
26
|
+
};
|
|
27
|
+
turns: TurnData[];
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export interface ModelData {
|
|
31
|
+
stats: {
|
|
32
|
+
input: number;
|
|
33
|
+
output: number;
|
|
34
|
+
cache_read: number;
|
|
35
|
+
cache_write: number;
|
|
36
|
+
total: number;
|
|
37
|
+
cost: number;
|
|
38
|
+
msgs: number;
|
|
39
|
+
};
|
|
40
|
+
sessions: Record<string, SessionData>;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export interface DashboardData {
|
|
44
|
+
generated: string;
|
|
45
|
+
sources?: ("claude" | "codex")[];
|
|
46
|
+
models: Record<string, ModelData>;
|
|
47
|
+
grand_total: {
|
|
48
|
+
input: number;
|
|
49
|
+
output: number;
|
|
50
|
+
cache_read: number;
|
|
51
|
+
cache_write: number;
|
|
52
|
+
total: number;
|
|
53
|
+
cost: number;
|
|
54
|
+
msgs: number;
|
|
55
|
+
};
|
|
56
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
4
|
+
"target": "ES2023",
|
|
5
|
+
"useDefineForClassFields": true,
|
|
6
|
+
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
|
7
|
+
"module": "ESNext",
|
|
8
|
+
"types": ["vite/client"],
|
|
9
|
+
"skipLibCheck": true,
|
|
10
|
+
"jsx": "react-jsx",
|
|
11
|
+
"moduleResolution": "bundler",
|
|
12
|
+
"allowImportingTsExtensions": true,
|
|
13
|
+
"verbatimModuleSyntax": true,
|
|
14
|
+
"moduleDetection": "force",
|
|
15
|
+
"noEmit": true,
|
|
16
|
+
"strict": true,
|
|
17
|
+
"noUnusedLocals": true,
|
|
18
|
+
"noUnusedParameters": true,
|
|
19
|
+
"erasableSyntaxOnly": true,
|
|
20
|
+
"noFallthroughCasesInSwitch": true,
|
|
21
|
+
"noUncheckedSideEffectImports": true,
|
|
22
|
+
"resolveJsonModule": true,
|
|
23
|
+
"baseUrl": ".",
|
|
24
|
+
"paths": {
|
|
25
|
+
"@/*": ["./src/*"]
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"include": ["src"],
|
|
29
|
+
"exclude": ["src/parser", "src/cli.ts"]
|
|
30
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
4
|
+
"target": "ES2023",
|
|
5
|
+
"lib": ["ES2023"],
|
|
6
|
+
"module": "ESNext",
|
|
7
|
+
"types": ["node"],
|
|
8
|
+
"skipLibCheck": true,
|
|
9
|
+
|
|
10
|
+
/* Bundler mode */
|
|
11
|
+
"moduleResolution": "bundler",
|
|
12
|
+
"allowImportingTsExtensions": true,
|
|
13
|
+
"verbatimModuleSyntax": true,
|
|
14
|
+
"moduleDetection": "force",
|
|
15
|
+
"noEmit": true,
|
|
16
|
+
|
|
17
|
+
/* Linting */
|
|
18
|
+
"strict": true,
|
|
19
|
+
"noUnusedLocals": true,
|
|
20
|
+
"noUnusedParameters": true,
|
|
21
|
+
"erasableSyntaxOnly": true,
|
|
22
|
+
"noFallthroughCasesInSwitch": true,
|
|
23
|
+
"noUncheckedSideEffectImports": true
|
|
24
|
+
},
|
|
25
|
+
"include": ["vite.config.ts"]
|
|
26
|
+
}
|
package/vite.config.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import path from "path"
|
|
2
|
+
import react from "@vitejs/plugin-react"
|
|
3
|
+
import tailwindcss from "@tailwindcss/vite"
|
|
4
|
+
import { defineConfig } from "vite"
|
|
5
|
+
|
|
6
|
+
export default defineConfig({
|
|
7
|
+
plugins: [react(), tailwindcss()],
|
|
8
|
+
resolve: {
|
|
9
|
+
alias: {
|
|
10
|
+
"@": path.resolve(__dirname, "./src"),
|
|
11
|
+
},
|
|
12
|
+
},
|
|
13
|
+
})
|