1
0
Fork 0
mirror of https://github.com/moritzruth/node-enttec-open-dmx-usb.git synced 2025-04-22 00:01:21 +02:00
node-enttec-open-dmx-usb/package.json
2021-02-26 10:41:37 +01:00

37 lines
858 B
JSON

{
"name": "enttec-open-dmx-usb",
"version": "3.0.0",
"description": "A Node.js library for interacting with the Enttec Open DMX USB Interface",
"repository": "https://github.com/moritzruth/node-enttec-open-dmx-usb.git",
"author": "Moritz Ruth <dev@moritzruth.de>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"dmx",
"enttec",
"usb"
],
"scripts": {
"build": "tsc",
"lint": "eslint src"
},
"files": [
"dist"
],
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/serialport": "^8.0.1",
"eslint": "^7.20.0",
"eslint-config-awzzm-node": "^1.5.0",
"eslint-config-awzzm-ts": "^1.5.2",
"typescript": "~4.1.5"
},
"dependencies": {
"eventemitter3": "^4.0.7",
"serialport": "^9.0.7"
}
}