-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.45 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
{
"name": "thyme",
"version": "1.0.0",
"description": "Companion app to speed up time recording.",
"main": "dist/main.js",
"scripts": {
"dev": "concurrently \"npm run dev:renderer\" \"npm run dev:main\"",
"dev:renderer": "vite",
"dev:main": "tsc -p tsconfig.main.json && electron .",
"build": "npm run build:renderer && npm run build:main",
"build:renderer": "vite build",
"build:main": "tsc -p tsconfig.main.json",
"start": "electron .",
"package": "electron-builder",
"test": "echo \"No tests specified\" && exit 0"
},
"keywords": [
"time-tracking",
"electron",
"react",
"typescript"
],
"author": "ItsSimonDavis",
"license": "MIT",
"build": {
"appId": "com.itssimondavis.thyme",
"productName": "Thyme",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-renderer/**/*"
],
"win": {
"target": [
"nsis"
],
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"devDependencies": {
"@types/node": "^25.0.9",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"concurrently": "^9.2.1",
"electron": "^40.0.0",
"electron-builder": "^26.4.0",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"dependencies": {
"react": "^19.2.3",
"react-dom": "^19.2.3"
}
}