-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.64 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
{
"name": "codex-usage-desktop",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Local-first macOS dashboard for Codex CLI token usage and cost estimates.",
"homepage": "https://github.com/itvincent-git/codex-usage-desktop#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/itvincent-git/codex-usage-desktop.git"
},
"license": "MIT",
"keywords": [
"codex-cli",
"openai-codex",
"token-usage",
"cost-tracking",
"tauri"
],
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "vite",
"dev:app": "pnpm tauri dev",
"build:web": "vite build",
"build": "pnpm build:web",
"tauri": "tauri",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-log": "^2.8.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.511.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"recharts": "^3.8.1",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.1.0",
"autoprefixer": "^10.4.21",
"jsdom": "^27.0.1",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.18",
"typescript": "^5.9.3",
"vite": "^7.2.1",
"vitest": "^4.0.7"
}
}