package.json (788B)
1 { 2 "name": "dslr-cam", 3 "version": "1.0.0", 4 "description": "Balena application to control a DSLR camera", 5 "repository": "https://github.com/balena-io-playground/balena-dslr", 6 "main": "index.js", 7 "scripts": { 8 "build": "tsc", 9 "start": "node ./build/index.js", 10 "prettify": "balena-lint --typescript --fix src/ test/", 11 "lint": "balena-lint --typescript src/ test/ && tsc --noEmit" 12 }, 13 "author": "", 14 "license": "ISC", 15 "dependencies": { 16 "@typedproject/gphoto2-driver": "^3.0.3", 17 "bleno": "npm:@abandonware/bleno@^0.5.1-4", 18 "lodash": "^4.17.21", 19 "segfault-handler": "^1.3.0", 20 "typescript": "^4.3.5", 21 "usb": "^1.7.1" 22 }, 23 "devDependencies": { 24 "@types/bleno": "^0.4.2", 25 "@types/node": "^12.20.1", 26 "@types/usb": "^1.5.3" 27 } 28 }