-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.4 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.4 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "tokenwatch",
"version": "0.9.0",
"description": "TokenWatch — a warm, editorial tray app for real-time Claude Code usage tracking on Windows and macOS",
"main": "dist/main.js",
"scripts": {
"start": "electron .",
"dev": "concurrently -k -n webpack,tsc-main,tsc-preload \"webpack --mode development --watch --progress\" \"tsc --project tsconfig.main.json --watch --preserveWatchOutput\" \"tsc --project tsconfig.preload.json --watch --preserveWatchOutput\"",
"build": "webpack --mode production && tsc --project tsconfig.main.json && tsc --project tsconfig.preload.json",
"electron-dev": "concurrently -k \"npm run dev\" \"wait-on dist/bundle.js dist/main.js dist/preload.js && electron .\"",
"pack": "electron-builder",
"dist": "npm run build && electron-builder",
"dist:mac": "npm run build && electron-builder --mac --publish never",
"dist:win": "npm run build && electron-builder --win --publish never",
"dist:linux": "npm run build && electron-builder --linux --publish never",
"make-ico": "node scripts/make-ico.mjs",
"make-icons": "node scripts/make-icons.mjs",
"make-tray-icons": "node scripts/make-tray-status-icons.mjs",
"lint": "biome lint ./src",
"lint:fix": "biome lint --write ./src",
"format": "biome format --write ./src",
"format:check": "biome format ./src",
"check": "biome check ./src",
"check:fix": "biome check --write ./src",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky",
"postinstall": "patch-package"
},
"keywords": [
"electron",
"tokenwatch",
"claude-code",
"usage-monitor",
"windows",
"macos",
"menu-bar",
"tray",
"ai",
"tokens"
],
"author": "",
"license": "PolyForm-Noncommercial-1.0.0",
"type": "module",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^24.8.1",
"concurrently": "^9.2.1",
"css-loader": "^7.1.2",
"electron": "^36.5.0",
"electron-builder": "^26.0.12",
"html-webpack-plugin": "^5.6.4",
"husky": "^9.1.7",
"patch-package": "^8.0.1",
"png-to-ico": "^3.0.1",
"png2icons": "^2.0.1",
"postcss-loader": "^8.2.0",
"sharp": "^0.34.5",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.17",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"vitest": "^4.1.4",
"wait-on": "^8.0.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"autoprefixer": "^10.4.21",
"ccusage": "18.0.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"electron-updater": "^6.8.3",
"i18next": "^26.0.5",
"lucide-react": "^0.523.0",
"next-themes": "^0.4.6",
"postcss": "^8.5.6",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^17.0.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1"
}
}