-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.73 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
{
"name": "timetrack",
"version": "5.18.1",
"description": "Simple desktop application to track your time spent on different projects.",
"main": "./out/main/index.js",
"author": {
"name": "The Don't Be Evil Company",
"email": "oss@the-dont-be-evil-company.com"
},
"license": "MIT",
"homepage": "https://timetrack.gaia.ws",
"desktopName": "com.the-dont-be-evil-company.timetrack.desktop",
"private": true,
"scripts": {
"install:electron": "bun run ./node_modules/electron/install.js",
"format": "prettier --plugin prettier-plugin-svelte --write .",
"check": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts & tsc -p tsconfig.node.json & svelte-check --tsconfig ./tsconfig.json",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build-unpack": "bun run build && electron-builder --dir",
"build-windows": "bun run build && electron-builder --win --publish never",
"build-macos": "bun run build && electron-builder --mac --publish never",
"build-linux": "bun run build && electron-builder --linux --publish never",
"update:dependencies": "bunx npm-check-updates -u",
"changelog": "./scripts/generate-changelog.sh"
},
"dependencies": {
"@electron-toolkit/utils": "4.0.0",
"@libsql/client": "0.18.0",
"drizzle-orm": "0.45.2",
"electron-squirrel-startup": "1.0.1",
"js-yaml": "5.4.1",
"moment": "2.30.1",
"node-color-log": "14.0.0",
"open": "11.0.2"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "3.0.0",
"@electron-toolkit/eslint-config-ts": "3.1.0",
"@electron-toolkit/tsconfig": "2.0.0",
"@eslint/js": "10.0.1",
"@lucide/svelte": "1.42.0",
"@sveltejs/adapter-node": "5.5.7",
"@sveltejs/vite-plugin-svelte": "6.2.4",
"@tailwindcss/vite": "4.3.3",
"@types/better-sqlite3": "9.6.0",
"@types/bun": "1.4.2",
"@types/js-yaml": "4.0.9",
"conventional-changelog": "8.1.3",
"conventional-changelog-conventionalcommits": "10.4.0",
"daisyui": "5.7.28",
"drizzle-kit": "0.31.10",
"electron": "44.2.0",
"electron-builder": "26.15.3",
"electron-vite": "5.0.0",
"eslint": "10.10.0",
"eslint-plugin-svelte": "3.23.0",
"marked": "18.0.12",
"prettier": "3.9.6",
"prettier-plugin-svelte": "4.1.1",
"prettier-plugin-tailwindcss": "0.8.1",
"svelte": "5.57.0",
"svelte-check": "4.7.6",
"tailwind-merge": "3.6.0",
"tailwind-variants": "3.3.1",
"tailwindcss": "4.3.3",
"tw-animate-css": "1.4.0",
"typescript": "6.0.2",
"typescript-eslint": "8.70.0",
"vite": "7.3.6",
"vite-tsconfig-paths": "6.1.1"
},
"packageManager": "bun@1.4.2"
}