UNPKG

node-intellicenter

Version:

NodeJS library for communicating with a Pentair IntelliCenter controller

110 lines (109 loc) 2.83 kB
{ "name": "node-intellicenter", "version": "0.5.2", "description": "NodeJS library for communicating with a Pentair IntelliCenter controller", "keywords": [ "pentair", "intellicenter", "pool", "poolcontroller", "homeautomation", "library" ], "homepage": "https://github.com/parnic/node-intellicenter#readme", "bugs": { "url": "https://github.com/parnic/node-intellicenter/issues" }, "repository": { "type": "git", "url": "git+https://github.com/parnic/node-intellicenter.git" }, "license": "MIT", "author": "Parnic", "type": "module", "exports": { ".": { "import": { "types": "./esm/index.d.ts", "default": "./esm/index.js" }, "require": { "types": "./cjs/index.d.ts", "default": "./cjs/index.js" } }, "./unit": { "import": { "types": "./esm/unit.d.ts", "default": "./esm/unit.js" }, "require": { "types": "./cjs/unit.d.ts", "default": "./cjs/unit.js" } }, "./finder": { "import": { "types": "./esm/finder.d.ts", "default": "./esm/finder.js" }, "require": { "types": "./cjs/finder.d.ts", "default": "./cjs/finder.js" } }, "./messages": { "import": { "types": "./esm/messages/messages.d.ts", "default": "./esm/messages/messages.js" }, "require": { "types": "./cjs/messages/messages.d.ts", "default": "./cjs/messages/messages.js" } } }, "typesVersions": { "*": { "*": [ "./cjs/*", "./cjs/messages/*" ] } }, "scripts": { "test": "jest", "build": "tsc --module commonjs --moduleResolution classic --outDir cjs/ && ncp cjs-package.json cjs/package.json && tsc --outDir esm/ && ncp esm-package.json esm/package.json", "example": "tsc && node esm/example.js", "lint": "eslint . && prettier . --check && markdownlint-cli2 **/*.md", "lint:fix": "eslint . --fix && prettier . --write && markdownlint-cli2 --fix **/*.md", "list-objects": "tsc && node esm/list-objects.js" }, "dependencies": { "debug": "^4.4.0", "uuid": "^11.0.3", "ws": "^8.18.0" }, "devDependencies": { "@eslint/js": "^9.17.0", "@types/debug": "^4.1.12", "@types/jest": "^29.5.14", "@types/minimist": "^1.2.5", "@types/uuid": "^10.0.0", "@types/ws": "^8.5.14", "eslint": "^9.17.0", "jest": "^29.7.0", "jest-websocket-mock": "^2.5.0", "markdownlint-cli2": "^0.17.1", "minimist": "^1.2.8", "ncp": "^2.0.0", "prettier": "3.4.2", "supports-color": "^10.0.0", "ts-jest": "^29.2.5", "typescript": "^5.7.2", "typescript-eslint": "^8.19.0" }, "optionalDependencies": { "bufferutil": "^4.0.9" } }