This repository was archived by the owner on May 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.7 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.7 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "actarius",
"productName": "Actarius",
"version": "0.0.4",
"description": "An Electron-based browser that can view LBRY URLs.",
"private": true,
"main": "src/index.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "echo \"No linting configured\""
},
"keywords": [
"Web Browser",
"LBRY",
"Electron"
],
"author": "shroom",
"contributors": [
{
"name": "Oscar Sanderson",
"email": "hello@sandrolinux.com",
"url": "https://sandrolinux.com/"
},
{
"name": "Lav Radis",
"url": "https://github.com/LavRadis"
},
{
"name": "Shroom",
"email": "hello-shroom@protonmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Shroom2020/actarius-lbry-browser.git"
},
"bugs": {
"url": "https://github.com/Shroom2020/actarius-lbry-browser/issues"
},
"license": "MIT",
"config": {
"forge": {
"packagerConfig": {
"icon": "src/res/icon",
"name": "Actarius"
},
"makers": [
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
],
"config": {
"name": "Actarius",
"iconUrl": "./src/res/icon.icns",
"icon": "./src/res/icon.icns"
}
},
{
"name": "@electron-forge/maker-squirrel",
"platforms": [
"win32"
],
"config": {
"name": "Actarius"
}
},
{
"name": "@electron-forge/maker-flatpak",
"platforms": [
"linux"
],
"config": {
"name": "Actarius"
}
},
{
"name": "@electron-forge/maker-deb",
"platforms": [
"linux"
],
"config": {
"name": "Actarius"
}
},
{
"name": "@electron-forge/maker-rpm",
"platforms": [
"linux"
],
"config": {
"name": "Actarius"
}
}
]
}
},
"dependencies": {
"electron-builder-squirrel-windows": "^22.14.5",
"electron-context-menu": "^3.1.1",
"electron-squirrel-startup": "^1.0.0",
"meow": "^10.1.2",
"trim-newlines": "^4.0.2"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.61",
"@electron-forge/maker-deb": "^6.0.0-beta.61",
"@electron-forge/maker-rpm": "^6.0.0-beta.61",
"@electron-forge/maker-squirrel": "^6.0.0-beta.61",
"@electron-forge/maker-zip": "^6.0.0-beta.61",
"electron": "^16.0.2"
}
}