-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.97 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
{
"name": "arkwatch",
"version": "0.4.12",
"description": "Windows 11 screen-time tracker with local SQLite storage",
"main": "out/main/index.js",
"type": "module",
"author": "",
"license": "MIT",
"packageManager": "bun@1.3.10",
"scripts": {
"dev": "electron-vite dev",
"build": "bun run typecheck && electron-vite build",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"dist": "bun run build && electron-builder --win nsis",
"dist:publish": "bun run build && electron-builder --win nsis --publish always"
},
"dependencies": {
"@effect/platform": "^0.94.5",
"@effect/platform-node": "^0.104.1",
"@fontsource/jetbrains-mono": "^5.2.8",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"active-win": "^9.0.0",
"chrono-node": "^2.9.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"effect": "^3.19.19",
"electron-updater": "^6.8.3",
"framer-motion": "^12.35.2",
"lucide-react": "^0.511.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"recharts": "^2.15.4",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@swc/core": "^1.15.18",
"@types/lodash": "^4.17.24",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/semver": "^7.7.1",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^5.1.4",
"autoprefixer": "^10.4.27",
"electron": "40.8.0",
"electron-builder": "26.8.1",
"electron-vite": "5.0.0",
"postcss": "^8.5.8",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"vite": "7.3.1",
"vitest": "4.0.18"
},
"trustedDependencies": [
"active-win",
"@swc/core",
"electron",
"sqlite3",
"esbuild",
"electron-winstaller"
]
}