-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.48 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.48 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@kybarg/camera",
"version": "0.0.14",
"description": "Native Node.js addon for high-performance Windows camera capture using Media Foundation. Select native formats (MJPEG/NV12/YUY2), receive raw sample buffers, and recover from sleep/device loss.",
"main": "addon.js",
"types": "index.d.ts",
"private": false,
"keywords": [
"camera",
"webcam",
"video",
"capture",
"media-foundation",
"native-addon",
"node-addon",
"windows",
"nv12",
"mjpeg"
],
"files": [
"addon.js",
"index.d.ts",
"README.md",
"LICENSE",
"examples/",
"build/Release/addon.node",
"binding.gyp",
"*.cc",
"*.h"
],
"scripts": {
"build": "node-gyp rebuild",
"prepare": "npm run build",
"example": "node examples/example.js",
"example-ts": "npx ts-node examples/example.ts",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run type-check"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.5.0"
},
"devDependencies": {
"@types/node": "^20.19.9",
"sharp": "^0.34.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"node-gyp": "^11.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/kybarg/camera.git"
},
"homepage": "https://github.com/kybarg/camera#readme",
"bugs": {
"url": "https://github.com/kybarg/camera/issues"
},
"license": "MIT",
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
}
}