-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.42 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
{
"name": "Nuit",
"version": "0.2.3",
"description": "Nord Dark Mode for PDFs",
"main": "app.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"author": {
"name": "Ojasw U.",
"email": "[email protected]"
},
"license": "ISC",
"devDependencies": {
"electron": "^10.4.3",
"electron-builder": "^22.9.1",
"electron-notarize": "^1.0.0",
"electron-packager": "^15.2.0"
},
"dependencies": {
"dotenv": "^8.2.0",
"nouislider": "^14.6.2",
"open": "^7.3.0"
},
"build": {
"appId": "dev.oupadhyay.Nuit",
"productName": "Nuit",
"afterSign": "build/notarize.js",
"fileAssociations": [
{
"ext": "pdf",
"icon": "build/icon.icns",
"role": "viewer",
"isPackage": false
}
],
"linux": {
"icon": "build/icon.png",
"desktop": {
"Name": "Nuit",
"Comment": "Dark Mode PDF reader"
},
"target": [
"AppImage",
"deb",
"rpm",
"tar.gz",
"snap"
],
"category": "Utilty"
},
"win": {
"target": [
"portable"
],
"icon": "build/icon.ico"
},
"mac": {
"icon": "build/icon.png",
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
],
"bundleVersion": "1",
"artifactName": "Nuit-${version}.${ext}",
"darkModeSupport": true,
"hardenedRuntime": true,
"gatekeeperAssess": false,
"provisioningProfile": "./build/nightpdf.provisionprofile",
"type": "distribution"
}
}
}