-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathpackage.json
116 lines (116 loc) · 2.44 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
{
"name": "tallyarbiter",
"version": "3.1.1",
"description": "The flexible and customizable tally system",
"keywords": [
"util",
"functional",
"server",
"client",
"browser",
"tsl",
"tally",
"carbonite",
"graphite",
"blackmagic",
"atem",
"ross",
"obs",
"vmix",
"panasonic",
"AV-HS410",
"analogway",
"blink1",
"roland",
"tricaster",
"gpio"
],
"license": "MIT",
"author": "Joseph Adams",
"bin": {
"tallyarbiter": "bin/tallyarbiter"
},
"publishConfig": {
"access": "public"
},
"files": [
"package.json",
"package-lock.json",
"index.js",
"bin",
"dist",
"ui-dist",
"readme.md",
"LICENSE"
],
"contributors": [
"Robert Wittek <robo-w@dragon.wien>",
"Julian Waller",
"Joakim Forsberg",
"Matteo Gheza <me@matteogheza.it>",
"chanx",
"Sam Yoffe",
"David Stevens",
"David Prows",
"monkzz",
"Greg Oseid"
],
"dependencies": {
"@sentry/node": "^8.33.1",
"@types/express": "^4.17.13",
"ajv": "^8.11.0",
"atem-connection": "3.4.0",
"axios": "^0.28.0",
"bcryptjs": "^2.4.0",
"bonjour-service": "^1.0.12",
"compression": "^1.7.4",
"dotenv": "^16.0.0",
"electron-updater": "^6.3.0",
"esm": "^3.2.25",
"express": "^4.18.1",
"find-package-json": "^1.2.0",
"find-remove": "^4.1.0",
"fs-extra": "^10.1.0",
"jquery": "^3.6.0",
"jsonwebtoken": "^9.0.0",
"jspack": "^0.0.4",
"node-emberplus": "^3.0.5",
"obs-websocket-js": "npm:obs-websocket-js@^4.0.3",
"obs-websocket-js-5": "npm:obs-websocket-js@^5.0.6",
"osc": "^2.4.3",
"rate-limiter-flexible": "^2.3.7",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5",
"socket.io": "4.8.0",
"socket.io-client": "4.5.0",
"tsl-umd": "^1.1.2",
"tsl-umd-v5": "^1.0.5",
"uuid": "^8.3.2",
"winston": "^3.7.2",
"xml2js": "^0.5.0"
},
"main": "main.js",
"scripts": {
"start": "ts-node-dev src/index.ts --dev",
"format": "prettier -w .",
"prepare": "cd UI && npm i && npm run build",
"redundancyjs": "redundancyjs",
"build": "tsc",
"prepack": "npm run build",
"prepublishOnly": "npm run build",
"desktop": "npm run build && electron .",
"build-desktop": "npm run build && electron-builder"
},
"devDependencies": {
"@types/find-package-json": "^1.2.2",
"@types/find-remove": "^2.0.1",
"@types/node": "^17.0.31",
"@types/xml2js": "^0.4.11",
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"prettier": "^3.4.2",
"redundancyjs": "^0.1.0",
"ts-node-dev": "^1.1.8",
"typescript": "^5.1.6"
}
}