-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
41 lines (41 loc) · 904 Bytes
/
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": "uvc-control",
"version": "2.0.0",
"description": "Control UVC compliant webcams from node",
"main": "index.js",
"scripts": {
"preview": "node ./examples/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makenai/node-uvc-control.git"
},
"keywords": [
"webcam",
"uvc",
"quickcam",
"logitech",
"lifecam",
"usb",
"c920"
],
"author": "Pawel Szymczykowski <[email protected]>",
"contributors": [
"Josh Beckwith <[email protected]> (https://github.com/positlabs/)"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/makenai/node-uvc-control/issues"
},
"homepage": "https://github.com/makenai/node-uvc-control#readme",
"dependencies": {
"usb": "^1.1.2"
},
"engines": {
"node": ">=8"
},
"devDependencies": {
"express": "^4.17.1",
"serve": "^11.0.2"
}
}