-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 916 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "usbdmx-js",
"version": "1.0.2",
"description": "Node.js library for the FX5 USB DMX Interface",
"keywords": ["dmx", "usbdmx", "fx5", ""],
"homepage": "https://github.com/rainloreley/usbdmx-js#readme",
"bugs": {
"url": "https://github.com/rainloreley/usbdmx-js/issues",
"email": "adrian@abmgrt.dev"
},
"author": {
"name": "Adrian Baumgart",
"email": "adrian@abmgrt.dev",
"url": "https://abmgrt.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/rainloreley/usbdmx-js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"start": "npx tsc && node dist/index.js",
"prepublish": "tsc"
},
"dependencies": {
"node-hid": "^2.1.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.0.0",
"@types/node-hid": "^1.3.1",
"typescript": "^4.7.3"
}
}