-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.38 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": "soundcraft-ui",
"version": "3.6.0",
"homepage": "https://github.com/bitfocus/companion-module-soundcraft-ui#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"
},
"author": "Ferdinand Malcher <[email protected]>",
"contributors": [
"Christian Himmler <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bitfocus/companion-module-soundcraft-ui.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": "^18.12"
},
"dependencies": {
"@companion-module/base": "~1.11.0",
"bufferutil": "^4.0.7",
"rxjs": "7.8.1",
"soundcraft-ui-connection": "^2.7.0",
"utf-8-validate": "^6.0.3"
},
"devDependencies": {
"@companion-module/tools": "^2.1.0",
"@types/node": "^18.19.32",
"eslint": "^9.11.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"typescript-eslint": "^8.7.0",
"typescript": "~5.6.2"
},
"packageManager": "[email protected]"
}