dirigera
Version:
A TypeScript client for IKEA's DIRIGERA smart home hub
58 lines (57 loc) • 1.41 kB
JSON
{
"name": "dirigera",
"version": "1.4.0",
"description": "A TypeScript client for IKEA's DIRIGERA smart home hub",
"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": [
"iot",
"smarthome",
"ikea",
"dirigera",
"typescript"
],
"author": "lpgera",
"license": "MIT",
"bugs": {
"url": "https://github.com/lpgera/dirigera/issues"
},
"homepage": "https://github.com/lpgera/dirigera#readme",
"dependencies": {
"commander": "^13.1.0",
"got": "^14.4.7",
"mdns-server": "^1.0.11",
"p-retry": "^6.2.1",
"reconnecting-websocket": "^4.4.0",
"ws": "^8.18.1"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.5",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.14.1",
"@types/ws": "^8.18.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"volta": {
"node": "22.12.0"
},
"lint-staged": {
"*.{ts,md,json}": "prettier --write"
}
}