Files
web-dslr/package.json
Ingvar Stepanyan 76b6c2fdb8 Bump package.json
2023-08-05 19:52:55 +01:00

49 lines
1.1 KiB
JSON

{
"name": "web-gphoto2",
"version": "0.2.0",
"description": "WebAssembly implementation of gphoto2 and libusb to control DSLR cameras over USB on the Web",
"exports": {
"import": "./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": "me@rreverser.com",
"url": "https://rreverser.com"
},
"contributors": [
{
"name": "Tjeerd Bakker",
"email": "tjeerd992@gmail.com",
"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"
}
}