-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·57 lines (57 loc) · 1.31 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
57
{
"name": "allenheath-sq",
"version": "2.1.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-allenheath-sq.git"
},
"prettier": "@companion-module/tools/.prettierrc.json",
"lint-staged": {
"*.{css,json,md,scss}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"yarn lint:raw --fix"
],
"*.yaml": [
"prettier --write"
]
},
"engines": {
"node": "^18.12"
},
"dependencies": {
"@companion-module/base": "~1.10.0",
"eventemitter3": "^5.0.1"
},
"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.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "~5.6.3",
"typescript-eslint": "~8.14.0"
},
"packageManager": "yarn@4.5.3"
}