forked from OhHaiBrowser/Browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.07 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
{
"name": "ohhaibrowser",
"productName": "OhHai Browser",
"version": "3.4.0",
"license": "ISC",
"description": "Browser the internet",
"homepage": "https://ohhaibrowser.com",
"author": {
"name": "Lucas Reade",
"email": "lucas.reade@gmail.com"
},
"main": "main.js",
"scripts": {
"lint": "eslint -c .eslintrc.json . --ext .js --fix",
"dev": "nodemon --exec electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps",
"build": "electron-builder --mac --windows --linux",
"release": "electron-builder --mac --windows --linux --publish always",
"start": "electron ."
},
"files": [
"*.js",
"build",
"node_modules"
],
"build": {
"icon": "browser/assets/icons/icon.png",
"appId": "OhHai.Browser",
"mac": {
"icon": "browser/assets/icons/mac_icon.icns",
"category": "public.app-category.utilities",
"target": [
"default"
]
},
"linux": {
"icon": "browser/assets/icons/linux_icon.png",
"category": "",
"target": [
"deb",
"rpm"
]
},
"win": {
"icon": "browser/assets/icons/win_icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"requestedExecutionLevel": "asInvoker"
},
"fileAssociations": {
"ext": [
"html",
"htm"
],
"name": "Web files",
"role": "Viewer"
},
"protocols": {
"name": "Web urls",
"schemes": [
"http",
"https"
],
"role": "Viewer"
},
"nsis": {
"perMachine": true
}
},
"dependencies": {
"dexie": "^3.0.1",
"electron-is-dev": "^1.2.0",
"feather-icons": "^4.28.0",
"publicsuffixlist": "^0.3.0"
},
"devDependencies": {
"electron": "^8.2.5",
"electron-builder": "^22.6.0",
"eslint": "^6.8.0",
"nodemon": "^2.0.4"
}
}