{
  "name": "videodb",
  "version": "0.2.7",
  "description": "A NodeJS wrapper for VideoDB's API written in TypeScript",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./capture": {
      "types": "./dist/capture/index.d.ts",
      "default": "./dist/capture/index.js"
    }
  },
  "files": [
    "dist",
    "bin",
    "lib",
    "setup.js"
  ],
  "scripts": {
    "build": "tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",
    "clean": "rm -rf ./dist/",
    "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
    "lint": "eslint ./src/ --fix",
    "prepare": "npm run build",
    "install": "node setup.js",
    "test:watch": "jest --watch",
    "test": "jest --coverage",
    "typecheck": "tsc --noEmit",
    "once": "ts-node -r tsconfig-paths/register  src/index.ts",
    "docs:gen": "npm run docs:del && typedoc --plugin typedoc-plugin-markdown",
    "docs:del": "rm -rf ./docs",
    "docs:html": "rm -rf ./docs-html && typedoc --tsconfig tsconfig.build.json --out docs-html --entryPoints ./src/ --entryPointStrategy expand --excludePrivate",
    "docs:serve": "npm run docs:html && npx serve docs-html",
    "prepublishOnly": "npm run build"
  },
  "binaryConfig": {
    "baseUrl": "https://artifacts.videodb.io/capture",
    "version": "0.3.1",
    "checksums": {
      "darwin-arm64": "cefc35883acd53f63dc50f8deb186ea0a8e17c65e646af8e81a309251a220b9d",
      "darwin-x64": "8b456607ba3628092081d92c1a22fcf4e8156f4e83b2d3d119bf0244eaa870b2",
      "win32-x64": "e388639c15ab35ac32179d3fc05a363f0f71d4d90265c6b48fb1af56ecae7736"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/video-db/videodb-node.git"
  },
  "keywords": [
    "videodb",
    "video-db",
    "video_db",
    "videodb-node",
    "recorder",
    "capture"
  ],
  "author": "VideoDB",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/video-db/videodb-node/issues"
  },
  "homepage": "https://videodb.io",
  "devDependencies": {
    "@types/jest": "^29.5.11",
    "@types/lodash": "^4.14.202",
    "@types/node": "^20.10.3",
    "@types/uuid": "^9.0.8",
    "@types/ws": "^8.18.1",
    "@typescript-eslint/eslint-plugin": "^8.58.1",
    "@typescript-eslint/parser": "^8.58.1",
    "eslint": "^8.55.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^5.0.1",
    "eslint-plugin-tsdoc": "^0.5.2",
    "husky": "^8.0.3",
    "jest": "^29.7.0",
    "prettier": "^3.1.0",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "tsc-alias": "^1.8.8",
    "tsconfig-paths": "^4.2.0",
    "typedoc": "^0.25.4",
    "typedoc-plugin-markdown": "^3.17.1",
    "typescript": "^5.3.2"
  },
  "dependencies": {
    "axios": "^1.15.0",
    "form-data": "^4.0.0",
    "lodash": "^4.17.21",
    "tar": "^7.4.3",
    "uuid": "^9.0.1",
    "ws": "^8.19.0"
  }
}
