-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
{
"name": "studiocoast-vmix",
"version": "3.9.0",
"main": "dist/index.js",
"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",
"build:test": "tsc -p tsconfig.build.json --noEmit",
"lint": "eslint --fix",
"lint:test": "eslint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitfocus/companion-module-studiocoast-vmix.git"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
],
"*.{ts}": [
"yarn lint --fix --",
"git add"
]
},
"license": "MIT",
"engines": {
"node": "^22.8"
},
"dependencies": {
"@companion-module/base": "~1.11.1",
"companion-module-utils": "^0.4.0",
"lodash": "~4.17.21",
"xml2js": "~0.6.2"
},
"devDependencies": {
"@companion-module/tools": "^2.1.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.13",
"@types/node": "22.9.0",
"@types/xml2js": "0.4.14",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "^15.12.0",
"husky": "9.1.6",
"jest": "^29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"typescript-eslint": "^8.14.0"
}
}