-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "dasher-electron",
"version": "1.2.1",
"description": "Electron implementation of Dasher.",
"main": "src/main.js",
"scripts": {
"lint": "yarn run eslint",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"build": "git submodule update --init && electron-builder",
"release": "git submodule update --init && electron-builder --mac --windows --linux --publish always"
},
"keywords": [],
"author": "Technoke LLC",
"license": "MIT",
"devDependencies": {
"electron": "^11.3.0",
"electron-builder": "^22.11.7",
"eslint": "^7.31.0",
"electron-builder-notarize": "^1.2.0",
"eslint-config-google": "^0.14.0"
},
"optionalDependencies": {
"dmg-license": "^1.0.9"
},
"build": {
"afterSign": "electron-builder-notarize",
"appId": "uk.org.acecentre.dasherelectron",
"productName": "Dasher",
"extraResources": [
"submodules/**/*"
],
"mac": {
"category": "public.app-category.utilities",
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist"
},
"dmg": {
"icon": false
},
"linux": {
"target": [
"AppImage"
],
"category": "Office"
}
}
}