-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.6 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
{
"name": "homebridge-wiz-net",
"version": "1.0.1",
"type": "module",
"description": "Control Wiz products over network.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nikolas-schwarz/homebridge-wiz-net.git"
},
"keywords": [
"homebridge-plugin"
],
"author": "Nikolas Schwarz <6736204+nikolas-schwarz@users.noreply.github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nikolas-schwarz/homebridge-wiz-net/issues"
},
"homepage": "https://github.com/nikolas-schwarz/homebridge-wiz-net#readme",
"engines": {
"node": ">=0.12.0",
"homebridge": ">=1.3.0"
},
"scripts": {
"clean": "rimraf ./dist",
"build": "rimraf ./dist && npm run build:slim",
"build:full": "esbuild src/index.ts --outfile=dist/index.js --bundle --platform=node --target=es2018,node12",
"build:slim": "esbuild src/index.ts --outfile=dist/index.js --bundle --platform=node --target=es2018,node12 --external:./node_modules/* --format=esm",
"build:slim:min": "esbuild src/index.ts --outfile=dist/index.js --minify --bundle --platform=node --target=es2018,node12 --external:./node_modules/*",
"build:dev": "esbuild src/index.ts --outfile=debug/index.js --sourcemap --bundle --platform=node --target=es2018,node12",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"esbuild": "^0.15.13",
"@types/jwt-decode": "^2.2.1",
"@types/node": "^14.14.6",
"homebridge": "^1.3.1",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"getmac": "^5.17.0",
"internal-ip": "^6.2.0"
}
}