-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 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
{
"name": "resi-web",
"version": "0.1.0",
"main": "dist/main.js",
"type": "module",
"scripts": {
"prepare": "husky install",
"dev": "yarn build:main --watch",
"build": "rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.build.json",
"lint:raw": "eslint --ext .ts --ext .js --ignore-pattern dist --ignore-pattern pkg",
"lint": "yarn lint:raw .",
"dist": "yarn companion-module-build"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AustinLMayes/companion-module-resi-web.git"
},
"dependencies": {
"@companion-module/base": "~1.4.0",
"reflect-metadata": "^0.1.13",
"got": "^12.0.0"
},
"devDependencies": {
"@companion-module/tools": "^1.4.1",
"@types/debug": "^4.1.9",
"@types/lodash-es": "^4.17.9",
"@types/node": "^18.15.11",
"husky": "^8.0.3",
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
},
"prettier": "@companion-module/tools/.prettierrc.json"
}