generated from bitfocus/companion-module-template-js
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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": "getontime-ontime",
"version": "4.6.0",
"main": "/dist/index.js",
"license": "MIT",
"prettier": "@companion-module/tools/.prettierrc.json",
"repository": {
"type": "git",
"url": "git+https://github.com/bitfocus/companion-module-getontime-ontime.git"
},
"scripts": {
"prepare": "husky install",
"dev": "yarn build:watch",
"build": "rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json --watch",
"lint": "eslint ./src --ext .ts",
"lint:raw": "eslint --ext .ts --ext .js --ignore-pattern dist --ignore-pattern pkg",
"format": "prettier -w .",
"package": "yarn build && companion-module-build",
"postinstall": "yarn build"
},
"engines": {
"node": ">=18.16.0"
},
"dependencies": {
"@companion-module/base": "^1.11.3",
"companion-module-utils": "^0.5.0",
"ws": "^8.17.1"
},
"devDependencies": {
"@companion-module/tools": "^2.1.1",
"@types/node": "^18.16.0",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^9.18.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^13.1.2",
"prettier": "^3.4.2",
"rimraf": "^3.0.2",
"typescript": "~5.3.3"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
],
"*.ts": [
"yarn lint --fix"
]
}
}