48 lines
1.6 KiB
JSON
48 lines
1.6 KiB
JSON
|
{
|
||
|
"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"
|
||
|
}
|
||
|
}
|