This repository was archived by the owner on Mar 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.86 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.86 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
{
"name": "posture-check-app",
"version": "1.0.3",
"description": "A friendly reminder to check your posture",
"main": "src/main.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"lint": "eslint . --ext .js",
"lint-and-fix": "eslint . --ext .js --fix",
"postinstall": "electron-builder install-app-deps"
},
"author": "LEDBrain <opensource@ledbrain.de>",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"electron": "^29.1.3",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5"
},
"dependencies": {
"ms": "^2.1.3"
},
"repository": "github:LEDBrain/posture-check-app",
"build": {
"appId": "de.ledbrain.posture-check-app",
"mac": {
"target": "default",
"category": "public.app-category.utilities",
"icon": "src/assets/posture_check.png"
},
"win": {
"publisherName": "LEDBrain",
"icon": "src/assets/posture_check.png",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true
},
"linux": {
"category": "Utility",
"target": [
{
"target": "appImage"
},
{
"target": "deb"
}
]
}
}
}