forked from kashamalasha/nightscout-widget-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "nightscout-widget-electron",
"productName": "Owlet",
"description": "An Electron widget application to show on a desktop sgv (sensor glucose value) is getting from Nightscout API",
"author": {
"name": "Dmitry Burnyshev",
"email": "[email protected]"
},
"homepage": "https://github.com/kashamalasha/nightscout-widget-electron",
"version": "0.6.3-beta",
"main": "main.js",
"scripts": {
"start": "NODE_ENV=production electron .",
"dev": "NODE_ENV=development electron .",
"lint": "eslint .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"ship": "electron-builder -p always",
"test": "jest",
"test-coverage": "jest --coverage"
},
"build": {
"appId": "com.burny.owlet.app",
"productName": "Owlet",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!README.md",
"asset/**/*",
"!asset/screenshot*"
],
"extraFiles": [
"LICENSE"
],
"mac": {
"notarize": false,
"hardenedRuntime": true,
"gatekeeperAssess": false,
"icon": "asset/icons/mac/AppIcon.icns",
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"category": "public.app-category.health",
"target": [
{
"target": "default",
"arch": [
"x64",
"arm64"
]
}
]
},
"afterSign": "build/notarize.js",
"win": {
"target": [
"nsis",
"zip"
],
"icon": "asset/icons/win/AppIcon.ico"
},
"nsis": {
"oneClick": true,
"installerIcon": "asset/icons/win/Appicon.ico",
"uninstallerIcon": "asset/icons/win/Appicon.ico",
"uninstallDisplayName": "Owlet-uninstaller",
"license": "build/LICENSE.txt",
"allowToChangeInstallationDirectory": false
},
"linux": {
"target": [
"appImage"
],
"icon": "asset/icons/png",
"category": "Utility"
},
"appImage": {
"license": "build/LICENSE.txt"
},
"publish": [
{
"provider": "github",
"owner": "kashamalasha",
"repo": "nightscout-widget-electron"
}
]
},
"repository": {
"type": "git",
"provider": "github",
"owner": "kashamalasha",
"repo": "nightscout-widget-electron",
"ulr": "https://github.com/kashamalasha/nightscout-widget-electron"
},
"keywords": [
"diabetes",
"continuous glucose management",
"cgm in the cloud",
"cgm",
"dexcom",
"nightscout"
],
"license": "AGPL-3.0",
"dependencies": {
"electron-log": "^5.0.1",
"electron-store": "^8.1.0",
"electron-updater": "^6.1.7"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@electron/notarize": "^2.2.0",
"ajv": "^8.12.0",
"dotenv": "^16.3.1",
"electron": "^27.1.2",
"electron-builder": "^24.9.1",
"eslint": "^8.54.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
}
}