dirigera
Version:
A TypeScript client for IKEA's DIRIGERA smart home hub
63 lines (62 loc) • 1.47 kB
JSON
{
"name": "dirigera",
"version": "2.0.0",
"description": "A TypeScript client for IKEA's DIRIGERA smart home hub",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": "dist/src/bin.js",
"scripts": {
"test": "tsc --noEmit --p tsconfig.test.json",
"prepare": "husky || exit 0",
"prepublishOnly": "npm run test",
"prepack": "rm -rf dist && git stash -u && tsc",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lpgera/dirigera.git"
},
"keywords": [
"ikea",
"dirigera",
"iot",
"smarthome",
"matter",
"thread",
"typescript"
],
"author": "lpgera",
"license": "MIT",
"bugs": {
"url": "https://github.com/lpgera/dirigera/issues"
},
"homepage": "https://github.com/lpgera/dirigera#readme",
"dependencies": {
"commander": "^15.0.0",
"got": "^15.0.7",
"mdns-server": "^1.0.11",
"p-retry": "^8.0.0",
"reconnecting-websocket": "^4.4.0",
"ws": "^8.21.0"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^25.9.1",
"@types/ws": "^8.18.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.9.1",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=22"
},
"volta": {
"node": "24.16.0"
},
"lint-staged": {
"*.{ts,md,json}": "prettier --write"
}
}