-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
{
"name": "bmd-atem",
"version": "3.16.1",
"homepage": "https://github.com/bitfocus/companion-module-atem#readme",
"main": "dist/index.js",
"type": "module",
"scripts": {
"postinstall": "husky",
"dev": "run build:main --watch",
"build": "rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.build.json",
"lint:raw": "eslint",
"lint": "yarn lint:raw .",
"dist": "yarn companion-module-build",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitfocus/companion-module-bmd-atem.git"
},
"license": "MIT",
"prettier": "@companion-module/tools/.prettierrc.json",
"lint-staged": {
"*.{css,json,md,scss}": [
"run prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"run lint:raw --fix"
]
},
"engines": {
"node": "^22.2"
},
"dependencies": {
"@atem-connection/camera-control": "^0.3.0",
"@companion-module/base": "~1.11.3",
"atem-connection": "3.6.0-nightly-master-20240419-215343-75a89856.0",
"lodash-es": "^4.17.21",
"type-fest": "^4.32.0"
},
"devDependencies": {
"@companion-module/tools": "^2.1.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.5",
"eslint": "^9.18.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "~5.6.3",
"typescript-eslint": "^8.19.1",
"vitest": "^3.0.0-beta.4"
},
"packageManager": "[email protected]"
}