This repository has been archived by the owner on Feb 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
78 lines (78 loc) · 1.82 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
{
"name": "YouTube",
"github_repository": "discord-youtube",
"version": "1.3.4",
"description": "A YouTube wrapper with Discord Rich Presence",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": ""
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:BrianPetkovsek/discord-youtube.git"
},
"keywords": [
"discord",
"rich",
"presence",
"youtube"
],
"author": "BrianPetkovsek",
"license": "MIT",
"bugs": {
"url": "https://github.com/BrianPetkovsek/discord-youtube/issues"
},
"build": {
"appId": "com.youtube.magic",
"win": {
"target": "nsis",
"icon": "./icon.ico"
},
"extraFiles": [
{
"from": "LICENSE",
"to": "LICENSE.discord-youtube.txt",
"filter": []
},
{
"from": "updating.html",
"to": "updating.html",
"filter": []
},
{
"from": "start_update.bat",
"to": "start_update.bat",
"filter": []
}
]
},
"homepage": "https://github.com/BrianPetkovsek/discord-youtube#readme",
"dependencies": {
"bad-words": "^1.6.4",
"custom-electron-titlebar": "^3.2.2-hotfix62",
"discord-rpc": "^3.0.1",
"electron-discord-register": "^1.0.0",
"electron-widevinecdm": "file:modules/electron-widevinecdm",
"h264ify-js": "file:modules/h264ify-js",
"moment": "^2.22.2",
"q": "file:modules/q-master",
"request": "^2.88.2",
"temp-write": "^3.4.0",
"xmlhttprequest": "^1.8.0",
"youtube-js": "file:modules/youtube-js"
},
"devDependencies": {
"electron": "^4.2.4",
"electron-builder": "^22.3.2",
"register-scheme": "0.0.2",
"node-fetch": "^2.6.0"
},
"os": [
"win32",
"!darwin",
"!linux"
]
}