-
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.66 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.66 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": "workflow-timer",
"version": "1.2.1",
"description": "Workflow - Modern work tracking desktop application",
"main": "main.js",
"scripts": {
"start": "electron . --no-sandbox",
"rebuild": "electron-rebuild",
"lint": "eslint .",
"build": "electron-builder --win --publish never",
"build:mac": "electron-builder --mac --publish never",
"build:all": "electron-builder --win --mac --publish never",
"build:dir": "electron-builder --win --dir"
},
"keywords": [
"timer",
"productivity",
"work",
"tracker"
],
"author": "Workflow Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fleizean/workflow-timer.git"
},
"bugs": {
"url": "https://github.com/fleizean/workflow-timer/issues"
},
"homepage": "https://github.com/fleizean/workflow-timer#readme",
"devDependencies": {
"@eslint/js": "^9.39.2",
"electron": "^28.0.0",
"electron-builder": "^24.13.3",
"electron-rebuild": "^3.2.9",
"eslint": "^9.39.2",
"globals": "^16.5.0"
},
"dependencies": {
"better-sqlite3": "^9.2.2"
},
"build": {
"appId": "com.workflow.timer",
"productName": "Workflow",
"win": {
"target": "nsis",
"icon": "build/icon.png"
},
"files": [
"**/*",
"!**/*.py",
"!**/*.pyc",
"!**/venv/**",
"!**/__pycache__/**",
"!README.md"
],
"directories": {
"buildResources": "build"
}
}
}