-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.77 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
{
"name": "@fraction/oasis-desktop",
"productName": "oasis-desktop",
"repository": {
"type": "git",
"url": "git+https://github.com/fraction/oasis-desktop.git"
},
"version": "1.3.0",
"description": "Desktop installation for Oasis",
"main": "src/index.js",
"scripts": {
"test": "common-good test",
"fix": "common-good fix",
"start": "electron src",
"install": "electron-builder install-app-deps && patch-package",
"build": "electron-builder --publish=never",
"dist": "electron-builder"
},
"author": "Christian Bundy <[email protected]>",
"license": "AGPL-3.0",
"dependencies": {
"@fraction/oasis": "github:fraction/oasis#semver:2.17.0",
"patch-package": "^6.4.7"
},
"devDependencies": {
"common-good": "^4.0.3",
"electron": "^12.0.7",
"electron-builder": "^22.10.5"
},
"optionalDependencies": {},
"build": {
"appId": "io.fraction.oasis-desktop",
"linux": {
"category": "Network",
"executableName": "oasis-desktop",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"arm64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
]
},
"deb": {
"packageCategory": "net",
"priority": "optional",
"maintainer": "Christian Bundy <[email protected]>"
},
"dmg": {
"icon": "build/dmg/icon.icns"
},
"win": {
"publisherName": "Fraction",
"target": [
"nsis"
]
}
},
"bugs": {
"url": "https://github.com/fraction/oasis-desktop/issues"
},
"homepage": "https://github.com/fraction/oasis-desktop#readme",
"keywords": []
}