-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.17 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
{
"name": "venom86",
"version": "1.0.3",
"description": "x86 Emulation by Qrodex",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"distCI": "electron-builder --win --linux --mac"
},
"repository": "https://github.com/Qrodex/venom86",
"publish": {
"provider": "github",
"releaseType": "release"
},
"author": "Qrodex",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@electron/remote": "^2.1.0",
"electron-updater": "^6.1.4",
"v86": "^0.4.0"
},
"devDependencies": {
"electron": "^25.4.0",
"electron-builder": "^20.44.4"
},
"build": {
"appId": "com.qrodex.venom86",
"productName": "venom86",
"win": {
"verifyUpdateCodeSignature": false,
"target": [
"nsis",
"portable"
],
"publisherName": "Qrodex"
},
"linux": {
"target": [
"deb",
"AppImage",
"snap",
"rpm"
],
"maintainer": "Qrodex",
"category": "Utility"
},
"mac": {
"target": [
"zip",
"tar.gz"
],
"category": "public.app-category.utilities"
}
}
}