-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.31 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.31 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
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "visionbrowser",
"version": "21.1.1",
"metadata": {
"api": "2.0.0",
"build": "20010",
"century": 20,
"packagedate": "12 December 2020",
"flags": {
"branch": "v2",
"special": false,
"homepage": "https://web.tabliss.io/"
}
},
"description": "Simple and minimalist browser created in Electron",
"main": "main.js",
"build": {
"appId": "com.squaredlabs.vision",
"productName": "Vision Browser",
"asar": false,
"publish": [
{
"provider": "github",
"owner": "BeanedTaco",
"repo": "vision"
}
],
"win": {
"icon": "build/icon.ico",
"publish": "github",
"target": [
"nsis",
"zip"
]
},
"linux": {
"target": [
"deb",
"rpm",
"tar.gz",
"appimage"
],
"maintainer": "The Vision Project",
"vendor": "Squared Labs",
"category": "Network",
"synopsis": "A web browser created in Electron; simple and easy to use"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"license": "build/license.txt",
"language": "2057",
"shortcutName": "Vision Browser",
"menuCategory": "Squared Labs"
}
},
"scripts": {
"start": "npx electron .",
"dist": "npx electron-builder build",
"publish": "build --win -p never",
"postinstall": "electron-builder install-app-deps"
},
"repository": "https://github.com/Squared-Labs/vision",
"keywords": [
"Browser",
"Made with Electron",
"Vision Browser"
],
"author": "Squared Labs",
"contributors": [
"SaturdayNightDead <hello@bean.codes> (https://bean.codes)",
"trentanator09 (https://www.reddit.com/user/trentanator09)"
],
"license": "MIT",
"devDependencies": {
"electron": "^11.1.0",
"electron-builder": "^22.9.1",
"electron-packager": "^15.2.0"
},
"dependencies": {
"electron-tabs": "^0.15.0",
"electron-updater": "^4.3.5",
"favicon-getter": "^1.1.3",
"v8-compile-cache": "^2.2.0",
"request": "^2.88.2"
}
}