-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.16 KB
/
package.json
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
37
38
39
40
41
{
"name": "@zunderscore/elgato-light-control",
"version": "1.1.2",
"description": "Javascript wrapper for Elgato Key Lights and Light Strip control",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "tsc && node dist/tests/tests.js",
"prepare": "npm run build",
"start": "tsc && node dist/index.js"
},
"keywords": [
"Elgato",
"Key Light",
"Light Strip",
"Streaming"
],
"homepage": "https://github.com/zunderscore/elgato-light-control",
"repository": {
"type": "git",
"url": "https://github.com/zunderscore/elgato-light-control.git"
},
"bugs": {
"url": "https://github.com/zunderscore/elgato-light-control/issues",
"email": "[email protected]"
},
"author": "Zack Williamson <[email protected]> (http://zunderscore.com/)",
"license": "MIT",
"dependencies": {
"axios": "^0.26.1",
"bonjour-service": "^1.0.11"
},
"devDependencies": {
"@types/node": "^17.0.23",
"typescript": "^4.6.2"
},
"files": [
"dist/**/*"
]
}