knxnetjs
Version:
A TypeScript library for KNXnet/IP communication
45 lines (44 loc) • 895 B
JSON
{
"name": "knxnetjs",
"version": "1.9.0",
"description": "A TypeScript library for KNXnet/IP communication",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"knxnetjs": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"knx",
"knxnet",
"typescript",
"home-automation",
"building-automation"
],
"author": "",
"license": "MIT",
"dependencies": {
"node-hid": "^2.1.2"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/node-hid": "^1.3.4",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=16.0.0"
}
}