-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
50 lines (50 loc) · 1.14 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
42
43
44
45
46
47
48
49
50
{
"name": "web-gphoto2",
"version": "0.4.1",
"description": "WebAssembly implementation of gphoto2 and libusb to control DSLR cameras over USB on the Web",
"exports": {
"import": "./build/camera.js"
},
"module": "./build/camera.js",
"browser": "./build/camera.js",
"types": "build/camera.d.ts",
"scripts": {
"build:wasm": "./build.sh",
"build:ts": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChromeLabs/web-gphoto2"
},
"keywords": [
"gphoto2",
"libusb",
"webassembly"
],
"author": {
"name": "Ingvar Stepanyan",
"email": "[email protected]",
"url": "https://rreverser.com"
},
"contributors": [
{
"name": "Tjeerd Bakker",
"email": "[email protected]",
"url": "https://icheered.com"
}
],
"license": "LGPL-2.1-or-later",
"bugs": {
"url": "https://github.com/GoogleChromeLabs/web-gphoto2/issues"
},
"homepage": "https://github.com/GoogleChromeLabs/web-gphoto2#readme",
"files": [
"build/*"
],
"devDependencies": {
"@types/emscripten": "^1.39.5"
},
"dependencies": {
"typescript": "^5.1.6"
}
}