-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from one-click-studio/revert-56-52-overloaded-cpu
Revert "52 overloaded cpu"
- Loading branch information
Showing
83 changed files
with
2,871 additions
and
6,216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
{ | ||
"recommendations": [ | ||
"dbaeumer.vscode-eslint", | ||
"vue.volar", | ||
"vue.vscode-typescript-vue-plugin", | ||
"ms-vscode.vscode-typescript-next" | ||
] | ||
"recommendations": ["dbaeumer.vscode-eslint"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"watch": ["src"], | ||
"ext": ".ts,.js", | ||
"ignore": ["src/tests/*"], | ||
"ignore": [], | ||
"exec": "npx ts-node ./src/main/index.ts" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "gabin", | ||
"version": "0.2.5", | ||
"version": "0.2.0", | ||
"packageManager": "[email protected]", | ||
"description": "Automate camera switching with OBS, Bitfocus Companion and any audio api.", | ||
"author": "OneClickStudio", | ||
|
@@ -12,13 +12,12 @@ | |
"postinstall": "pnpm -C ./src/render install", | ||
"typecheck": "tsc --noEmit -p tsconfig.json --composite false", | ||
"dev": "cross-env GABIN_CLIENT_PORT=5999 concurrently \"pnpm run dev:client\" \"pnpm run dev:server\"", | ||
"dev:server": "npx nodemon --no-auto-open --debug", | ||
"dev:server": "npx nodemon", | ||
"dev:client": "pnpm -C ./src/render dev", | ||
"build": "shx rm -rf ./build && concurrently \"pnpm run build:client\" \"pnpm run build:server\"", | ||
"build:server": "tsc && shx cp -R ./src/resources ./build/resources", | ||
"build:client": "pnpm -C ./src/render build && shx mkdir -p ./build/render/dist && shx cp -R ./src/render/dist ./build/render", | ||
"preview": "pnpm run build && node build/main/index.js", | ||
"test": "ts-node ./src/tests/audio.ts --no-auto-open --debug" | ||
"preview": "pnpm run build && node build/main/index.js" | ||
}, | ||
"pkg": { | ||
"assets": [ | ||
|
@@ -39,27 +38,25 @@ | |
"finalhandler": "^1.2.0", | ||
"obs-websocket-js": "^5.0.2", | ||
"onnxruntime-node": "^1.13.1", | ||
"osc-js": "^2.4.0", | ||
"rxjs": "^7.8.0", | ||
"serve-static": "^1.15.0", | ||
"simple-json-db": "^2.0.0", | ||
"socket.io": "^4.6.0", | ||
"systray2": "github:one-click-studio/node-systray", | ||
"wav": "^1.0.2" | ||
"systray2": "github:one-click-studio/node-systray" | ||
}, | ||
"devDependencies": { | ||
"@types/deep-eql": "^4.0.0", | ||
"@types/finalhandler": "^1.2.0", | ||
"@types/node": "^18.13.0", | ||
"@types/serve-static": "^1.15.0", | ||
"@types/wav": "^1.0.1", | ||
"concurrently": "^7.6.0", | ||
"cross-env": "^7.0.3", | ||
"nodemon": "^2.0.20", | ||
"pkg": "^5.8.1", | ||
"playwright": "^1.29.2", | ||
"shx": "^0.3.4", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^5.0.3", | ||
"typescript": "^4.9.5", | ||
"yarn": "^1.22.19" | ||
} | ||
} |
Oops, something went wrong.