forked from one-click-studio/gabin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.23 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
{
"name": "gabin",
"version": "0.1.1",
"packageManager": "[email protected]",
"description": "Automate camera switching with OBS, Bitfocus Companion and any audio api.",
"author": "OneClickStudio",
"homepage": "https://oneclickstudio.fr",
"repository": "github:one-click-studio/gabin",
"main": "./out/main/index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.vue --fix",
"typecheck": "tsc --noEmit -p tsconfig.json --composite false",
"test": "vitest run",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win --config",
"build:mac": "npm run build && electron-builder --mac --config",
"build:linux": "npm run build && electron-builder --linux --config",
"release": "pnpm build && electron-builder --publish always --config"
},
"dependencies": {
"@electron-toolkit/preload": "^1.0.2",
"@electron-toolkit/utils": "^1.0.2",
"@headlessui/vue": "^1.7.7",
"audify": "^1.8.1",
"custom-electron-titlebar": "^4.1.6",
"deep-equal": "^2.1.0",
"electron-updater": "^5.3.0",
"interprocess": "^0.2.4",
"klona": "^2.0.5",
"obs-websocket-js": "^5.0.2",
"onnxruntime-node": "^1.13.1",
"rxjs": "^7.8.0",
"simple-json-db": "^2.0.0",
"unocss": "^0.48.0",
"vue-router": "^4.1.6",
"webrtcvad": "^1.0.1"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/notarize": "^1.2.3",
"@rushstack/eslint-patch": "^1.2.0",
"@types/deep-equal": "^1.0.1",
"@types/node": "16.11.22",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"electron": "^21.3.0",
"electron-builder": "^23.6.0",
"electron-vite": "^1.0.14",
"eslint": "^8.28.0",
"eslint-plugin-vue": "^9.7.0",
"less": "^4.1.3",
"playwright": "^1.29.2",
"prettier": "^2.7.1",
"typescript": "^4.9.3",
"unocss-preset-scrollbar": "^0.2.1",
"vite": "^3.2.4",
"vitest": "^0.27.1",
"vue": "^3.2.45",
"vue-tsc": "^1.0.9"
}
}