-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.53 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
{
"name": "obs-camera-viewport-control",
"version": "1.0.0",
"description": "OBS browser dock for adjusting camera transforms while preserving their location and size on screen",
"main": "dist/index.js",
"scripts": {
"build": "npm-run-all -s build:*",
"build:browserify": "node ./node_modules/browserify/bin/cmd.js src/main.ts -p [ tsify --noImplicitAny] > dist/bundle.js",
"build:copyhtml": "cpy \"**/*.html\" ../dist/ --cwd=src --parents",
"build:minifyhtml": "node ./node_modules/minify/bin/minify dist/index.html > dist/index.min.html",
"build:minifyjs": "node ./node_modules/minify/bin/minify dist/bundle.js > dist/bundle.min.js",
"build:combine": "node ./build/inline min",
"watch": "npm-run-all -p watch:*",
"watch:browserify": "node ./node_modules/watchify/bin/cmd.js src/main.ts -o dist/bundle.js -p [ tsify --noImplicitAny ]",
"watch:copyhtml": "onchange -i ./src -- npm-run-all -s build:copy*",
"watch:combinehtml": "onchange -i ./dist/index.html -- node ./build/inline",
"watch:combinejs": "onchange -i ./dist/bundle.js -- node ./build/inline"
},
"author": "Mark Schwartzkopf",
"dependencies": {
"obs-websocket-js": "^5.0.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"browserify": "^17.0.0",
"cpy-cli": "^3.1.1",
"eslint": "^8.8.0",
"minify": "^8.0.3",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"tsify": "^5.0.4",
"typescript": "^4.5.5",
"watchify": "^4.0.0"
}
}