-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 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
58
59
60
61
62
63
64
{
"name": "@companion-module/tools",
"version": "2.1.0",
"type": "module",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bitfocus/companion-module-tools.git"
},
"bin": {
"companion-generate-manifest": "scripts/generate-manifest.js",
"companion-module-build": "scripts/build.js",
"companion-module-check": "scripts/check.js"
},
"engines": {
"node": "^18.18 || ^22.8"
},
"files": [
"eslint",
"scripts",
"tsconfig",
".prettierrc.json",
"index.js",
"CHANGELOG.md",
"webpack.*"
],
"dependencies": {
"@eslint/js": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "^5.2.1",
"find-up": "^7.0.0",
"parse-author": "^2.0.0",
"tar": "^7.4.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"zx": "^8.1.6"
},
"peerDependencies": {
"@companion-module/base": "^1.11.0",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"typescript-eslint": "^8.2.0"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
},
"prettier": {
"optional": true
},
"typescript-eslint": {
"optional": true
}
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"eslint": "^9.10.0",
"prettier": "^3.3.3",
"typescript-eslint": "^8.5.0"
},
"packageManager": "[email protected]"
}