-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
53 lines (53 loc) · 1.25 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
{
"name": "ptzoptics-visca",
"version": "3.3.0-dev",
"type": "module",
"main": "dist/main.js",
"scripts": {
"postinstall": "husky",
"test": "jest",
"package": "yarn build && companion-module-build",
"build": "rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json --watch",
"lint:raw": "eslint",
"lint": "yarn lint:raw ."
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bitfocus/companion-module-ptzoptics-visca.git"
},
"prettier": "@companion-module/tools/.prettierrc.json",
"lint-staged": {
"*.{css,json,md,scss,yaml}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"yarn lint:raw --fix"
]
},
"engines": {
"node": "^18.12"
},
"dependencies": {
"@companion-module/base": "~1.10.0"
},
"devDependencies": {
"@companion-module/tools": "^2.0.4",
"@jest/globals": "^29.7.0",
"@types/node": "^18.19.10",
"eslint": "~9.14.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.6.3",
"typescript-eslint": "~8.14.0"
},
"packageManager": "[email protected]"
}