{
  "name": "vitallens",
  "version": "0.4.5",
  "description": "VitalLens: Estimate vital signs such as heart rate and respiratory rate from face video.",
  "main": "./dist/vitallens.cjs.cjs",
  "module": "./dist/vitallens.esm.js",
  "browser": "./dist/vitallens.browser.js",
  "exports": {
    ".": {
      "browser": {
        "types": "./dist/types/index.browser.d.ts",
        "import": "./dist/vitallens.browser.js"
      },
      "node": {
        "types": "./dist/types/index.node.d.ts",
        "import": "./dist/vitallens.esm.js",
        "require": "./dist/vitallens.cjs.cjs"
      }
    }
  },
  "type": "module",
  "scripts": {
    "build": "tsc && rollup -c",
    "prepare": "npm run build",
    "build:integration": "rollup -c --environment BUILD_INTEGRATION",
    "test": "vitest run",
    "test:browser": "vitest run test/**/*.browser.test.ts test/**/*.shared.test.ts",
    "test:node": "vitest run test/**/*.node.test.ts test/**/*.shared.test.ts",
    "test:browser-integration": "npm run build:integration && cross-env RUN_INTEGRATION=true vitest run test/**/*.browser.integration.test.ts",
    "test:node-integration": "npm run build:integration && cross-env NODE_OPTIONS='--experimental-wasm-modules' RUN_INTEGRATION=true vitest run test/**/*.node.integration.test.ts",
    "lint": "eslint src/**/*.ts",
    "format": "prettier --write \"src/**/*.{ts,js,json,css,md}\"",
    "start:monitor": "EXAMPLE_TO_OPEN=browser/monitor node scripts/server.cjs",
    "start:scan": "EXAMPLE_TO_OPEN=browser/scan node scripts/server.cjs",
    "start:file": "EXAMPLE_TO_OPEN=browser/file node scripts/server.cjs",
    "start:widget": "EXAMPLE_TO_OPEN=browser/widget node scripts/server.cjs",
    "start:file-minimal": "EXAMPLE_TO_OPEN=browser/file_minimal node scripts/server.cjs",
    "start:webcam-minimal": "EXAMPLE_TO_OPEN=browser/webcam_minimal node scripts/server.cjs",
    "start:file-node": "node ./examples/node/file.js"
  },
  "keywords": [
    "vital signs",
    "heart rate",
    "breathing",
    "respiration",
    "rPPG",
    "HR",
    "video analysis",
    "healthcare",
    "remote sensing",
    "video processing",
    "face",
    "pulse",
    "photoplethysmography",
    "ppg",
    "vitals",
    "remote photoplethysmography"
  ],
  "author": "Rouast Labs",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Rouast-Labs/vitallens.js.git"
  },
  "bugs": {
    "url": "https://github.com/Rouast-Labs/vitallens.js/issues"
  },
  "homepage": "https://www.rouast.com/",
  "files": [
    "dist/vitallens.browser.js",
    "dist/vitallens.cjs.cjs",
    "dist/vitallens.esm.js",
    "dist/types",
    "dist/models",
    "LICENSE",
    "README.md"
  ],
  "dependencies": {
    "@ffmpeg/ffmpeg": "^0.12.15",
    "@ffmpeg/util": "^0.12.2",
    "chart.js": "^4.4.7",
    "fluent-ffmpeg": "^2.1.3",
    "vitallens-core": "0.2.3",
    "ws": "^8.18.2"
  },
  "peerDependencies": {
    "@tensorflow/tfjs": "^4.22.0",
    "@tensorflow/tfjs-core": "^4.22.0"
  },
  "devDependencies": {
    "@eslint/eslintrc": "^3.3.1",
    "@eslint/js": "^10.0.1",
    "@ffmpeg/core": "^0.12.10",
    "@rollup/plugin-alias": "^5.1.1",
    "@rollup/plugin-commonjs": "^29.0.0",
    "@rollup/plugin-json": "^6.1.0",
    "@rollup/plugin-node-resolve": "^16.0.0",
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^12.1.4",
    "@rollup/plugin-url": "^8.0.2",
    "@tensorflow/tfjs": "^4.22.0",
    "@tensorflow/tfjs-core": "^4.22.0",
    "@types/fluent-ffmpeg": "^2.1.27",
    "@types/ws": "^8.18.1",
    "@typescript-eslint/eslint-plugin": "^8.35.0",
    "@typescript-eslint/parser": "^8.34.1",
    "@vitest/browser": "^4.0.18",
    "cors": "^2.8.5",
    "cross-env": "^10.1.0",
    "dotenv": "^17.2.1",
    "eslint": "^10.0.2",
    "eslint-config-prettier": "^10.0.1",
    "eslint-plugin-prettier": "^5.5.4",
    "express": "^5.1.0",
    "globals": "^17.4.0",
    "jsdom": "^28.1.0",
    "pngjs": "^7.0.0",
    "prettier": "^3.5.3",
    "rollup": "^4.59.0",
    "rollup-plugin-string": "^3.0.0",
    "tslib": "^2.8.1",
    "typescript": "^5.8.3",
    "vitest": "^4.0.18"
  },
  "overrides": {
    "serialize-javascript": "^7.0.3"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
