-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 KB
/
package.json
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
{
"name": "sla-clock",
"productName": "SLA Clock",
"version": "0.4.1",
"description": "Remaining SLA time in your menu bar",
"main": "dist-js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"lint": "tsc && xo",
"test": "npm run lint",
"start": "tsc && electron .",
"pack": "tsc && electron-builder --dir",
"dist": "tsc && electron-builder --macos"
},
"repository": "github:bohemianoid/sla-clock",
"author": "Simon Häfliger <[email protected]> (https://simonhaefliger.ch)",
"license": "MIT",
"dependencies": {
"compare-versions": "^4.1.3",
"cron": "^1.8.2",
"date-fns": "^2.28.0",
"electron-debug": "^3.2.0",
"electron-store": "^8.0.1",
"element-ready": "^5.0.0",
"is-online": "^9.0.1",
"is-url-superb": "^5.0.0",
"new-github-issue-url": "^0.2.1",
"p-wait-for": "^3.2.0"
},
"devDependencies": {
"electron": "^17.2.0",
"electron-builder": "23.0.2",
"typescript": "4.5.5",
"xo": "^0.48.0"
},
"xo": {
"envs": [
"browser",
"node"
],
"space": true,
"rules": {
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"import/no-anonymous-default-export": "off"
}
},
"build": {
"files": [
"**/*",
"!media${/*}"
],
"appId": "ch.bohemianoid.sla-clock",
"mac": {
"darkModeSupport": true
}
}
}