UNPKG

node-libcamera

Version:

A Node.js wrapper for the Raspberry Pi libcamera API

82 lines (81 loc) 1.75 kB
{ "name": "node-libcamera", "version": "1.0.6", "description": "A Node.js wrapper for the Raspberry Pi libcamera API", "keywords": [ "raspberry pi", "camera", "video", "streaming", "stream", "libcamera", "node-libcamera", "raspicam", "raspivid", "raspistill", "libcamera-still", "libcamera-vid", "libcamera-jpeg" ], "homepage": "https://github.com/superhussain/node-libcamera#readme", "bugs": { "url": "https://github.com/superhussain/node-libcamera/issues", "email": "howdy@hussainabbas.com" }, "license": "MIT", "author": "Hussain Abbas <howdy@hussainabbas.com> (https://hussainabbas.com)", "main": "dist/index.js", "typings": "dist/index.d.ts", "module": "dist/node-libcamera.esm.js", "files": [ "dist", "src" ], "engines": { "node": ">=10" }, "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test --no-cache", "lint": "tsdx lint", "prepare": "tsdx build", "size": "size-limit", "analyze": "size-limit --why" }, "peerDependencies": {}, "devDependencies": { "@size-limit/preset-small-lib": "^7.0.5", "husky": "^7.0.4", "size-limit": "^7.0.5", "tsdx": "^0.14.1", "tslib": "^2.3.1", "typescript": "^3.9.10" }, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": false, "singleQuote": true, "trailingComma": "es5" }, "size-limit": [ { "path": "dist/node-libcamera.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/node-libcamera.esm.js", "limit": "10 KB" } ], "jest": { "globals": { "__DEV__": true } } }