forked from mncrp/monot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.14 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
{
"name": "monot",
"version": "1.0.0",
"description": "The new web browser \"Monot\"",
"main": "main.js",
"scripts": {
"test": "npx electron .",
"build": "npx electron-builder",
"makeEnv": "src\\environment.cmd"
},
"author": "Sorakime",
"license": "ISC",
"devDependencies": {
"electron": "^14.2.0",
"electron-builder": "^22.14.5",
"electron-tabs": "^0.15.0"
},
"build": {
"appId": "me.soraki.monot",
"productName": "Monot",
"files": [
"!.git",
"!.dist",
"node_modules",
"src",
"main.js",
"package-lock.json",
"package.json"
],
"asar": false,
"win": {
"icon": "src/image/logo.ico",
"target": "nsis",
"legalTrademarks": "Copyright 2021 Sorakime."
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "src/image/logo.ico"
},
"linux": {
"icon": "src/image/icon.png",
"target": "AppImage"
},
"appImage": {
"category": "Utility",
"synopsis": "Monot ver1.0b6Build6"
}
},
"dependencies": {
"electron-context-menu": "^3.1.1"
}
}