generated from bitfocus/companion-module-template-js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "renewedvision-propresenter-api",
"version": "1.0.4",
"main": "dist/main.js",
"scripts": {
"prepare": "husky install",
"build": "rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json --watch",
"lint:raw": "eslint --ext .ts --ext .js --ignore-pattern dist --ignore-pattern pkg",
"lint": "yarn lint:raw ."
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bitfocus/companion-module-renewedvision-propresenter-api.git"
},
"dependencies": {
"@companion-module/base": "~1.10.0",
"@julusian/midi": "^3.6.1",
"renewedvision-propresenter": "^7.7.2"
},
"devDependencies": {
"@companion-module/tools": "^1.5.1",
"@types/node": "^18.12",
"@types/ws": "^8.5.4",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"rimraf": "^3.0.2",
"typescript": "^5.3.3"
},
"prettier": "@companion-module/tools/.prettierrc.json",
"lint-staged": {
"*.{css,json,md,scss}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"yarn lint:raw --fix"
]
},
"engines": {
"node": "^18.12"
}
}