-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 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
{
"name": "peeka-usage",
"private": true,
"version": "0.1.10",
"description": "A Tauri desktop widget for tracking OpenAI, Anthropic, and OpenRouter usage.",
"author": "Star Chen",
"license": "MIT",
"homepage": "https://github.com/StarChen4/PeekaUsage",
"bugs": {
"url": "https://github.com/StarChen4/PeekaUsage/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StarChen4/PeekaUsage.git"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"icons:generate": "node ./scripts/generate-icons.mjs",
"tauri": "tauri",
"tauri:build:linux": "tauri build --config src-tauri/tauri.linux.conf.json",
"tauri:build:macos": "tauri build --config src-tauri/tauri.macos.conf.json"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-autostart": "^2",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-store": "^2.4.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"zustand": "^5.0.12"
},
"devDependencies": {
"@fiahfy/icns": "^0.0.7",
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/cli": "^2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.2.0",
"png-to-ico": "^3.0.1",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.2",
"typescript": "~5.6.2",
"vite": "^6.0.3"
}
}