-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.75 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.75 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "document-pager",
"version": "0.3.77",
"description": "Document Pager: Displays a text document in tabbed pages.",
"main": "main.js",
"repository": "https://github.com/manngo/document-pager",
"keywords": [],
"author": "Mark Simon",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^39.2.7",
"electron-builder": "^26.0.12"
},
"dependencies": {
"clipboard": "^2.0.11",
"electron-notarize": "^1.2.2",
"electron-osx-sign": "^0.6.0",
"electron-packager": "^17.1.2",
"marked": "^17.0.1",
"sudo-prompt": "^9.2.1",
"unzipper": "^0.12.3",
"yargs-parser": ">=22.0.0"
},
"productName": "Document Pager",
"build": {
"appId": "com.webcraft101.document-pager",
"mac": {
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"category": "public.app-category.developer-tools",
"target": {
"target": "default",
"arch": [
"arm64"
]
},
"icon": "images/document-pager.icns",
"notarize": true
},
"win": {
"target": [
{
"target": "portable",
"arch": [
"x64"
]
}
],
"icon": "images/document-pager.ico",
"forceCodeSigning": false,
"signAndEditExecutable": false
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true
},
"directories": {
"output": "../electron-builder/${name}/${os}"
},
"fileAssociations": {
"ext": ["sql", "txt", "md", "*"],
"description": "Whatever",
"role": "none"
}
},
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"pack-win": "build --dir --win",
"dist-win": "build --win"
}
}