-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
74 lines (74 loc) · 1.81 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
{
"name": "monot",
"homepage": "https://mncrp.github.io/project/monot",
"version": "2.0.0",
"description": "The new web browser \"Monot\" by monochrome.",
"main": "src/main/main.js",
"repository": "https://github.com/mncrp/monot/",
"scripts": {
"test": "npx electron .",
"build": "npx electron-builder",
"build:mac": "npx electron-builder --mac --universal",
"build:portable": "npx electron-builder --dir",
"format": "npx eslint --fix ."
},
"author": "monochrome Project.",
"license": "ISC",
"devDependencies": {
"electron": "^24.1.1",
"electron-builder": "^23.3.3",
"eslint": "^8.5.0",
"eslint-plugin-node": "^11.1.0"
},
"engines": {
"node": ">=15.0.0"
},
"build": {
"appId": "me.soraki.monot",
"productName": "Monot",
"copyright": "Copyright ©2021-2023 monochrome Project.",
"files": [
"!.git",
"!.dist",
"src",
"package-lock.json",
"package.json",
"!.DS_Store"
],
"win": {
"icon": "src/image/logo.ico",
"target": [
"nsis",
"zip",
"portable"
],
"legalTrademarks": "Copyright 2021-2023 monochrome."
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "src/image/logo.ico"
},
"portable": {
"artifactName": "Monot-v2.0.0-beta2-portable.exe"
},
"linux": {
"icon": "src/image/logo.png",
"target": "AppImage"
},
"appImage": {
"category": "Utility",
"synopsis": "Monot v2.0.0 Beta2 Build12"
},
"mac": {
"identity": null,
"icon": "src/image/logo.icns",
"category": "public.app-category.reference",
"target": "dmg"
},
"dmg": {
"backgroundColor": "#efefef",
"title": "Monot v2.0.0 Beta2 (Build12)"
}
}
}