node-red-contrib-google-smarthome
Version:
Lets you control Node-Red via Google Assistant or the Google Home App
86 lines (85 loc) • 2.09 kB
JSON
{
"name": "node-red-contrib-google-smarthome",
"version": "0.5.2",
"description": "Lets you control Node-Red via Google Assistant or the Google Home App",
"main": "dist/google-smarthome.js",
"type": "commonjs",
"scripts": {
"build": "node ./scripts/build.mjs",
"test": "mocha \"dist/test/**/*_spec.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikejac/node-red-contrib-google-smarthome.git"
},
"keywords": [
"google",
"smarthome",
"assistant",
"iot",
"node-red"
],
"node-red": {
"version": ">=3.0.0",
"nodes": {
"google-smarthome": "dist/google-smarthome.js",
"google-mgmt": "dist/google-mgmt.js",
"device": "dist/devices/device.js"
}
},
"engines": {
"node": ">=16.0.0"
},
"author": {
"name": "Michael Jacobsen"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/mikejac/node-red-contrib-google-smarthome/issues"
},
"homepage": "https://github.com/mikejac/node-red-contrib-google-smarthome#readme",
"dependencies": {
"@gravitysoftware/dnssd": "^0.5.x",
"cors": "^2.8.x",
"express": "^5.2.x",
"google-auth-library": "^10.5.0",
"googleapis": "^169.0.x",
"helmet": "^8.1.0",
"https": "^1.0.x",
"ip-range-check": "^0.2.x",
"morgan": "^1.10.x",
"stoppable": "^1.1.x",
"uid-generator": "^2.0.x"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@types/express": "^5.0.6",
"eslint": "^9.39.2",
"eslint-plugin-jsdoc": "^61.5.0",
"glob": "^13.0.0",
"globals": "^16.5.0",
"mocha": "^11.7.5",
"node-red": "^4.1.2",
"node-red-node-test-helper": "^0.3.5",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"fsevents": "*"
},
"maintainers": [
{
"name": "mikejac",
"email": "michael@visbyjacobsen.dk"
}
],
"files": [
"dist/**/*",
"!dist/**/*.map",
"!dist/test/",
"!dist/tsconfig.tsbuildinfo",
"examples/**/*",
"README.md",
"LICENSE"
]
}