{
  "name": "diarization-js",
  "version": "0.1.0",
  "description": "Speaker diarization in JavaScript: ONNX port of the pyannote/speaker-diarization-community-1 pipeline. Runs in the browser (WebGPU/WASM) or Node.",
  "keywords": [
    "speaker-diarization",
    "diarization",
    "pyannote",
    "onnx",
    "onnxruntime",
    "webgpu",
    "vbx",
    "audio",
    "speech",
    "asr"
  ],
  "homepage": "https://github.com/briox/diarization-js#readme",
  "bugs": {
    "url": "https://github.com/briox/diarization-js/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/briox/diarization-js.git"
  },
  "author": "Brieuc Lambert",
  "license": "Apache-2.0",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./audio/fbank": {
      "types": "./dist/audio/fbank.d.ts",
      "import": "./dist/audio/fbank.js"
    },
    "./artifacts": {
      "types": "./dist/artifacts.d.ts",
      "import": "./dist/artifacts.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "NOTICE"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "prepublishOnly": "npm run typecheck && npm run build && npm test"
  },
  "peerDependencies": {
    "onnxruntime-node": "^1.18.0",
    "onnxruntime-web": "^1.18.0"
  },
  "peerDependenciesMeta": {
    "onnxruntime-node": { "optional": true },
    "onnxruntime-web": { "optional": true }
  },
  "devDependencies": {
    "@types/node": "^20.12.0",
    "onnxruntime-node": "^1.18.0",
    "typescript": "^5.4.5",
    "vitest": "^1.6.0"
  },
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false
}
