generated from bitfocus/companion-module-template-js
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 950 Bytes
/
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
{
"name": "generic-swp08",
"version": "2.0.3",
"main": "src/index.js",
"type": "module",
"scripts": {
"prepare": "husky",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --w .",
"package": "companion-module-build",
"lint:raw": "eslint",
"lint": "yarn lint:raw ."
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bitfocus/companion-module-generic-swp08.git"
},
"dependencies": {
"@companion-module/base": "~1.11.2",
"p-queue": "^8.0.1"
},
"devDependencies": {
"@companion-module/tools": "^2.1.0",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
},
"engines": {
"node": "^22.11"
},
"prettier": "@companion-module/tools/.prettierrc.json",
"packageManager": "[email protected]",
"lint-staged": {
"*.{css,json,md,scss}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"yarn lint:raw --fix"
]
}
}