2023-10-08 18:44:10 +02:00
|
|
|
{
|
|
|
|
"name": "artnet-usbdmx-converter",
|
2024-05-08 21:44:47 +02:00
|
|
|
"version": "2.0.0",
|
2023-10-08 18:44:10 +02:00
|
|
|
"description": "Send ArtNet signals to USBDMX interfaces",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"bin": "./dist/index.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"watch": "tsc -w",
|
|
|
|
"dev": "npm run build && node ./dist/index.js",
|
2024-05-09 02:27:29 +02:00
|
|
|
"start": "node ./dist/index.js",
|
2023-10-08 21:18:05 +02:00
|
|
|
"make": "npm run build && pkg --compress GZip ."
|
2023-10-08 18:44:10 +02:00
|
|
|
},
|
|
|
|
"pkg": {
|
|
|
|
"scripts": [],
|
|
|
|
"assets": [
|
2023-10-08 21:14:40 +02:00
|
|
|
"node_modules/figlet/fonts/Standard.flf",
|
|
|
|
"node_modules/node-hid/**"
|
2023-10-08 18:44:10 +02:00
|
|
|
],
|
|
|
|
"targets": [
|
2023-10-14 21:57:22 +02:00
|
|
|
"node16.16.0-win-x64",
|
|
|
|
"node16.16.0-linux-x64"
|
2023-10-08 18:44:10 +02:00
|
|
|
],
|
|
|
|
"outputPath": "out/"
|
|
|
|
},
|
|
|
|
"type": "commonjs",
|
|
|
|
"keywords": [],
|
|
|
|
"repository": "https://github.com/rainloreley/artnet-usbdmx-converter",
|
|
|
|
"author": "Adrian Baumgart",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
|
|
|
"chalk": "4.1.2",
|
|
|
|
"clear": "^0.1.0",
|
|
|
|
"clui": "^0.3.6",
|
|
|
|
"dmxnet": "^0.9.0",
|
|
|
|
"figlet": "^1.6.0",
|
|
|
|
"inquirer": "8.0.0",
|
2024-05-08 20:25:17 +02:00
|
|
|
"minimist": "^1.2.8",
|
2023-10-08 18:44:10 +02:00
|
|
|
"node-hid": "^2.1.2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/clear": "^0.1.2",
|
|
|
|
"@types/clui": "^0.3.2",
|
|
|
|
"@types/figlet": "^1.5.6",
|
|
|
|
"@types/inquirer": "^9.0.3",
|
2024-05-08 20:25:17 +02:00
|
|
|
"@types/minimist": "^1.2.5",
|
2023-10-08 18:44:10 +02:00
|
|
|
"@types/node": "^20.8.3",
|
2024-01-29 22:18:20 +01:00
|
|
|
"@types/node-hid": "^1.3.4",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^6.20.0",
|
|
|
|
"@typescript-eslint/parser": "^6.20.0",
|
|
|
|
"eslint": "^8.56.0",
|
2023-10-08 18:44:10 +02:00
|
|
|
"pkg": "^5.8.1",
|
2024-01-29 22:18:20 +01:00
|
|
|
"typescript": "^5.3.3"
|
2023-10-08 18:44:10 +02:00
|
|
|
}
|
|
|
|
}
|