-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "obs-cli",
"version": "2.2.3",
"description": "Remote control OBS from the command line.",
"scripts": {
"test": "prettier --check \"./source/**/*\" --end-of-line auto && jest",
"prepare": "tsc"
},
"keywords": [
"obs",
"streaming",
"recording"
],
"homepage": "https://github.com/leafac/obs-cli",
"bugs": "https://github.com/leafac/obs-cli/issues",
"license": "MIT",
"author": "Leandro Facchinetti <[email protected]> (https://leafac.com)",
"funding": [
"https://patreon.com/leafac",
"https://paypal.me/LeandroFacchinettiEU",
"https://github.com/sponsors/leafac",
"https://btc.com/34KJBgtaFYMtDqpSgMayw9qiKWg2GQXA9M"
],
"bin": "distribution/index.js",
"repository": "leafac/obs-cli",
"dependencies": {
"commander": "^7.1.0",
"lodash": "^4.17.20",
"ws": "^7.4.3"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.29",
"@types/ws": "^7.4.0",
"jest": "^27.1.0",
"prettier": "^2.2.1",
"ts-jest": "^27.0.5",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"jest": {
"preset": "ts-jest",
"rootDir": "source"
}
}