-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
58 lines (58 loc) · 1.32 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
{
"name": "youtube-live",
"version": "2.5.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"dev": "yarn build:watch",
"build": "rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json --watch",
"lint": "eslint . --ext .ts",
"test": "jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitfocus/companion-module-youtube-live.git"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
],
"*.{ts}": [
"yarn lint --fix --",
"git add"
]
},
"engines": {
"node": "^18"
},
"dependencies": {
"@companion-module/base": "~1.4.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.10.6",
"@types/server-destroy": "^1.0.0",
"googleapis": "^118.0.0",
"leaked-handles": "^5.2.0",
"open": "^7.0.4",
"server-destroy": "^1.0.1"
},
"devDependencies": {
"@companion-module/tools": "^1.2.0",
"@typescript-eslint/eslint-plugin": "~2.31.0",
"@typescript-eslint/parser": "~2.31.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"ts-jest": "^29.1.0",
"typescript": "~5.0.3"
},
"resolutions": {
"eslint/inquirer": "~7.2.0"
}
}