This repository has been archived by the owner on Jan 8, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
package.json
97 lines (97 loc) · 2.17 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
{
"private": true,
"name": "devdocs-desktop",
"version": "0.0.0-this-does-not-matter",
"description": "Desktop client for devdocs.io",
"author": {
"name": "EGOIST",
"email": "[email protected]",
"url": "https://github.com/egoist"
},
"license": "MIT",
"main": "app/index.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"test": "npm run lint",
"lint": "xo",
"app": "DEBUG=devdocs-desktop:* electron app/index.js",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"release": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egoist/devdocs-desktop.git"
},
"keywords": [
"devdocs",
"app",
"electron"
],
"bugs": {
"url": "https://github.com/egoist/devdocs-desktop/issues"
},
"homepage": "https://github.com/egoist/devdocs-desktop#readme",
"devDependencies": {
"@egoist/prettier-config": "^0.1.0",
"dotenv": "^8.2.0",
"electron": "^12.0.4",
"electron-builder": "^22.10.5",
"electron-devtools-installer": "^3.2.0",
"electron-notarize": "^1.0.0",
"eslint-config-rem": "^4.0.0",
"minimist": "^1.2.0",
"prettier": "^1.19.1",
"xo": "^0.27.2"
},
"xo": {
"extends": "rem",
"envs": [
"browser"
],
"rules": {
"guard-for-in": 0,
"max-params": [
"error",
5
],
"import/order": "off",
"comma-dangle": "off"
}
},
"build": {
"appId": "sh.egoist.devdocs",
"productName": "DevDocs",
"compression": "maximum",
"asar": true,
"dmg": {
"sign": false
},
"mac": {
"category": "public.app-category.developer-tools",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"win": {
"target": [
"nsis",
"zip",
"portable"
]
},
"nsis": {
"oneClick": false
},
"linux": {
"synopsis": "DevDocs desktop app",
"category": "Development",
"target": [
"AppImage",
"deb",
"tar.xz"
]
}
}
}