UNPKG

bacnet-device

Version:

A TypeScript library for implementing BACnet IP devices in Node.js.

46 lines (45 loc) 1.17 kB
{ "name": "bacnet-device", "version": "0.0.1-alpha.21", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "scripts": { "docs": "typedoc --out ./docs src/index.ts", "clean": "rm -rf ./dist", "build": "npm run clean && tsc -p .", "test": "echo \"Error: no test specified\" && exit 1" }, "author": "Jacopo Scazzosi <jacopo@scazzosi.com>", "license": "MIT", "description": "A TypeScript library for implementing BACnet IP devices in Node.js.", "devDependencies": { "@types/debug": "^4.1.12", "@types/node": "^24.0.1", "typedoc": "^0.28.5", "typescript": "^5.8.3" }, "dependencies": { "@innovation-system/node-bacnet": "^2.1.0", "debug": "^4.4.1", "fastq": "^1.19.1" }, "homepage": "https://github.com/jacoscaz/bacnet-device", "bugs": "https://github.com/jacoscaz/bacnet-device/issues", "repository": { "type": "git", "url": "https://github.com/jacoscaz/bacnet-device.git" }, "files": [ "dist/**/*.js", "dist/**/*.d.ts", "SUPPORTED_OBJECT_TYPES.md" ], "keywords": [ "bacnet", "device", "ashrae", "object", "property" ] }