-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
117 lines (117 loc) · 3.85 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
115
116
117
{
"name": "baseball-scoreboard",
"version": "2.0.0",
"description": "Baseball Scoreboard for youtube LIVE. You can use this tool as an overlay for your baseball live stream. In this tool, you can find four different overlays for four different baseball match phases: Pre-game, In-game, Between Innings and Post-Game.",
"main": "index.js",
"bin": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FC-Softwares/baseball-scoreboard.git"
},
"type": "commonjs",
"keywords": [
"live-streming",
"live",
"scoreboard",
"baseball",
"html-css-javascript",
"live-stream",
"baseball-scoreboard",
"node.js"
],
"author": "F&C softwares",
"license": "ISC",
"bugs": {
"url": "https://github.com/FC-Softwares/baseball-scoreboard/issues"
},
"homepage": "https://github.com/FC-Softwares/baseball-scoreboard#readme",
"dependencies": {
"dotenv": "^16.4.5",
"electron-squirrel-startup": "^1.0.1",
"express": "^4.21.2",
"https": "^1.0.0",
"socket.io": "^4.8.1"
},
"pkg": {
"assets": "app"
},
"devDependencies": {
"@electron-forge/cli": "^7.6.1",
"@electron-forge/maker-deb": "^7.6.1",
"@electron-forge/maker-zip": "^7.5.0",
"@electron-forge/maker-rpm": "^7.6.0",
"@electron-forge/maker-squirrel": "^7.6.1",
"electron": "^34.0.1"
},
"config": {
"forge": {
"packagerConfig": {},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "baseball-scoreboard",
"title": "Baseball Scoreboard",
"author": "F&C softwares",
"exe": "baseball-scoreboard.exe",
"loadingGif": "./assets/loading.gif",
"setupIcon": "./assets/icon.ico",
"owners": [
"FC-Softwares",
"Luca Facchini",
"Kristian Ceribashi"
],
"uninstallerName": "baseball_scoreboard_uninstaller.exe",
"setupExe": "baseball_scoreboard_setup.exe",
"setupMsi": "baseball_scoreboard_setup.msi"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin",
"linux",
"win32",
"win64"
]
},
{
"name": "@electron-forge/maker-deb",
"config": {
"options": {
"category": "Utility",
"genericName": "Streaming Overlay",
"homepage": "https://www.fc-software.it",
"name": "Baseball Scoreboard",
"priority": "optional",
"productDescription": "Baseball Scoreboard for youtube LIVE. You can use this tool as an overlay for your baseball live stream. In this tool, you can find four different overlays professional looking with oppening and closing animations",
"productName": "Baseball Scoreboard",
"section": "utils"
}
}
},
{
"name": "@electron-forge/maker-rpm",
"config": {
"options": {
"category": "Utility",
"genericName": "Streaming Overlay",
"homepage": "https://www.fc-software.it",
"name": "Baseball Scoreboard",
"priority": "optional",
"productDescription": "Baseball Scoreboard for youtube LIVE. You can use this tool as an overlay for your baseball live stream. In this tool, you can find four different overlays professional looking with oppening and closing animations",
"productName": "Baseball Scoreboard",
"section": "utils"
}
}
}
]
}
}
}