-
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.25 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.25 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": "activity-sampling",
"version": "1.0.2",
"description": "Periodically asks the user about their current activity and logs it for analysis.",
"keywords": [
"pomodoro",
"time-tracking",
"estimation"
],
"author": "Falko Schumann",
"homepage": "https://github.com/falkoschumann/activity-sampling",
"license": "MIT",
"bugs": {
"url": "https://github.com/falkoschumann/activity-sampling/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/falkoschumann/activity-sampling.git"
},
"engines": {
"bun": ">=1.2.0",
"node": ">=24.0.0"
},
"main": "./out/main/index.js",
"scripts": {
"test": "vitest run",
"watch": "vitest watch",
"start": "electron-vite preview",
"dev": "electron-vite dev --watch",
"build": "tsc --build && electron-vite build",
"build:unpack": "electron-builder --dir",
"build:electron": "electron-builder",
"build:win": "electron-builder --win --x64",
"build:mac": "electron-builder --mac --arm64",
"build:linux": "electron-builder --linux --x64",
"postinstall": "electron-builder install-app-deps"
},
"devDependencies": {
"@eslint/js": "9.39.3",
"@js-temporal/polyfill": "0.5.1",
"@muspellheim/shared": "0.20.0",
"@softarc/sheriff-core": "0.19.6",
"@types/node": "24.11.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.4",
"@vitest/coverage-istanbul": "4.0.18",
"ajv": "8.18.0",
"ajv-formats": "3.0.1",
"bootstrap": "5.3.8",
"bootstrap-icons": "1.13.1",
"chart.js": "4.5.1",
"csv": "6.4.1",
"electron": "40.8.5",
"electron-builder": "26.8.1",
"electron-devtools-installer": "4.0.0",
"electron-vite": "5.0.0",
"eslint": "9.39.3",
"eslint-plugin-headers": "1.3.3",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.2",
"flux-standard-action": "2.1.2",
"globals": "17.4.0",
"prettier": "3.8.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"sass": "1.97.3",
"stylelint": "^17.4.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1",
"vite": "7.3.2",
"vitest": "4.0.18"
}
}