-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 818 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 818 Bytes
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": "bread-humidity-control",
"author": {
"name": "Andrew Moss"
},
"description": "Control humidity in a bread bin",
"version": "0.1.0",
"license": "MIT",
"main": "src/main.js",
"devDependencies": {
"@types/node": "^18.11.0",
"prettier": "^2.7.1",
"ts-essentials": "^9.4.1",
"typescript": "^4.8.4"
},
"scripts": {
"build": "./node_modules/.bin/tsc",
"format": "./node_modules/.bin/prettier src/*.ts --write",
"watch": "./node_modules/.bin/tsc --watch",
"test": "./node_modules/.bin/jest src/*.test.js",
"main": "node src/main",
"main-inspect": "node --inspect-brk src/main"
},
"dependencies": {
"@abandonware/noble": "^1.9.2-23",
"debug": "^4.1.1",
"prom-client": "^14.2.0",
"source-map-support": "^0.5.16",
"tplink-smarthome-api": "^4.2.0",
"yargs": "^17.6.0"
}
}