-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 961 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
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "tm-switcher",
"version": "1.9.0",
"main": "src/main.ts",
"bin": "out/switcher/main.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"bundle": "npm run build && rm -rf bundle && pkg package.json --options no-warnings",
"run": "rm -rf out && tsc && node out/switcher/main.js",
"rb": "npm run bundle && ./bundle/tm-switcher-macos"
},
"dependencies": {
"@octokit/types": "^13.5.0",
"@types/inquirer": "^7.3.1",
"atem-connection": "^3.0.1",
"chalk": "^4.1.2",
"inquirer": "^7.3.3",
"obs-websocket-js": "^5.0.1",
"vex-tm-client": "^1.4.0"
},
"pkg": {
"assets": [
"node_modules/@julusian/freetype2/prebuilds/**/*",
"secret/**/*"
],
"targets": [
"latest-macos-x64",
"latest-win-x64",
"latest-linux-x64"
],
"outputPath": "bundle"
},
"devDependencies": {
"@types/node": "^20.9.4",
"pkg": "^5.8.1",
"typescript": "^4.8.3"
}
}