-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
26 lines (26 loc) · 846 Bytes
/
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
{
"name": "hyperdeck-proxy",
"version": "1.0.0",
"description": "Provides a hyperdeck tcp interface for Caspar CG.",
"main": "dist/app_clips.js",
"scripts": {
"clean": "rmdir /s /q dist & mkdir dist && rmdir /s /q bin & mkdir bin",
"build": "tsc",
"build-win32": "npm run clean && npm run build && pkg -t node8-win dist/app_clips.js -o bin/CasparHyperdeckClipServer.exe && copy clipserver.json bin /Y && pkg -t node8-win dist/app_template.js -o bin/CasparHyperdeckTemplateServer.exe && copy templateserver.json bin /Y"
},
"keywords": [
"casparcg",
"hyperdeck"
],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.10",
"eslint": "^7.15.0",
"pkg": "^4.4.9"
},
"dependencies": {
"csv-parse": "^4.14.1",
"typescript": "^4.1.2"
}
}