-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.86 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.86 KB
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
61
62
63
64
65
66
{
"name": "@jasonzhaoww/tokenlens",
"version": "0.3.1",
"description": "Bun-first local token analytics for coding agents.",
"license": "MIT",
"author": "jasonzhaoww",
"type": "module",
"bin": {
"tokenlens": "./dist/tokenlens.js"
},
"files": [
"dist/tokenlens.js",
"dist/dashboard",
"assets/tokenlens-logo.svg",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jasonzhaoww/TokenLens.git"
},
"bugs": {
"url": "https://github.com/jasonzhaoww/TokenLens/issues"
},
"homepage": "https://github.com/jasonzhaoww/TokenLens#readme",
"keywords": [
"opencode",
"tokens",
"analytics",
"dashboard",
"bun",
"sqlite"
],
"engines": {
"bun": ">=1.3.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"tokenlens": "bun run src/cli/index.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit",
"dashboard:dev": "vite --config dashboard/vite.config.ts",
"build:dashboard": "vite build --config dashboard/vite.config.ts",
"build:cli": "bun build ./src/cli/index.ts --target=bun --outdir dist --entry-naming tokenlens.js",
"build": "bun run build:dashboard && bun run build:cli",
"compile": "bun run build:dashboard && bun build ./src/cli/index.ts --compile --outfile dist/tokenlens",
"demo:data": "bun run scripts/create-demo-db.ts",
"demo:serve": "bun run scripts/serve-demo.ts",
"demo:reset": "bun run scripts/reset-demo.ts",
"prepack": "bun run test && bun run typecheck && bun run build"
},
"devDependencies": {
"@vitejs/plugin-react": "^6.0.1",
"@types/bun": "^1.3.13",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"recharts": "^3.8.1",
"typescript": "^6.0.3",
"vite": "^8.0.10"
}
}