This repository has been archived by the owner on Aug 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
114 lines (114 loc) · 3.53 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "liveme-pro-tools",
"version": "1.508.20211220",
"description": "Tools for Live.me video network",
"homepage": "https://github.com/thecoder75/liveme-pro-tools",
"main": "src/electron/index.js",
"repository": {
"type": "git",
"url": "https://github.com/thecoder75/liveme-pro-tools"
},
"scripts": {
"start": "cross-env NODE_ENV=development electron ./src/electron/index.js --enable-logging",
"release": "electron-builder -w && electron-builder -l && electron-builder -m",
"release-win": "electron-builder -w",
"release-linux": " electron-builder -l",
"release-mac": " electron-builder -m"
},
"author": "TheCoder75",
"license": "AGPL-3.0-only",
"dependencies": {
"@electron/remote": "^2.0.1",
"async": "^2.6.0",
"concat-files": "^0.1.1",
"electron-is-dev": "^0.3.0",
"electron-settings": "3.2.0",
"fluent-ffmpeg": "^2.1.2",
"format-duration": "^1.0.0",
"isbinaryfile": "^4.0.0",
"node-fetch": "^2.3.0",
"node-mpv": "^1.4.3",
"pretty-date": "^0.2.0",
"ps-node": "^0.1.6",
"remarkable": "^1.7.1",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"shelljs": "^0.8.2",
"tar-fs": "^1.16.2"
},
"devDependencies": {
"cross-env": "^5.2.0",
"electron": "^16.0.4",
"electron-builder": "^22.14.5",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0"
},
"build": {
"appId": "com.thecoderstoolbox.livemeprotools",
"files": [
"**/*",
"node_modules/**/*"
],
"directories": {
"output": "./dist"
},
"productName": "LiveMe Pro Tools",
"artifactName": "LiveMe_Pro_Tools-${version}-${os}-${arch}.${ext}",
"asar": true,
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
],
"category": "Network",
"description": "Browse, search and manage accounts, replays and more without the need of an actual account on Live.me.",
"maintainer": "[email protected]",
"desktop": {
"Encoding": "UTF-8",
"Terminal": false,
"Name": "LiveMe Pro Tools"
},
"icon": "src/electron/build/",
"publish": null
},
"appImage": {
"category": "Network"
},
"win": {
"target": [
{
"target": "msi",
"arch": [
"x64"
]
}
],
"icon": "src/electron/build/1024x1024.png",
"publish": null
},
"mac": {
"category": "public.app-category.video",
"minimumSystemVersion": "10.12",
"target": [
{
"target": "zip",
"arch": [
"universal"
]
}
],
"type": "distribution",
"identity": null,
"icon": "src/electron/build/1024x1024.png",
"publish": null
}
}
}