forked from bitfocus/companion-module-allenheath-avantis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 877 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
{
"name": "allenheath-avantis",
"version": "2.0.0",
"api_version": "1.10",
"main": "dist/index.js",
"scripts": {
"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:raw": "eslint --ext .ts --ext .js --ignore-pattern dist --ignore-pattern pkg",
"lint": "yarn lint:raw .",
"format": "prettier -w .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=18.16.0"
},
"dependencies": {
"@companion-module/base": "^1.4.1",
"rimraf": "~3.0.2"
},
"devDependencies": {
"@companion-module/tools": "^1.2.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
}
}