{
  "name": "@jaehyun-ko/speaker-verification",
  "version": "5.0.0",
  "description": "Real-time speaker verification in the browser using NeXt-TDNN models",
  "main": "dist/next-tdnn-web.js",
  "types": "dist/next-tdnn-web.d.ts",
  "directories": {
    "example": "examples",
    "test": "tests"
  },
  "scripts": {
    "build": "tsc && webpack && webpack --config webpack.speaker-verification.config.js",
    "build:tsc": "tsc",
    "build:webpack": "webpack",
    "build:speaker-verification": "webpack --config webpack.speaker-verification.config.js",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "clean": "rm -rf dist coverage",
    "prepare": "npm run build",
    "start": "npm run clean && npm run build && http-server . -p 8082 -c-1"
  },
  "keywords": [
    "speaker-verification",
    "next-tdnn",
    "onnx",
    "webassembly",
    "audio-processing",
    "voice-recognition",
    "biometrics",
    "typescript"
  ],
  "author": "Jaehyun Ko",
  "license": "Apache-2.0",
  "type": "commonjs",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/jaehyun-ko/node-speaker-verification.git"
  },
  "files": [
    "dist/",
    "README.md",
    "LICENSE"
  ],
  "exports": {
    ".": {
      "import": "./dist/next-tdnn-web.js",
      "require": "./dist/next-tdnn-web.js",
      "default": "./dist/next-tdnn-web.js"
    },
    "./speaker-verification": "./dist/speaker-verification.js"
  },
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "@types/node": "^24.0.15",
    "@types/web": "^0.0.252",
    "http-server": "^14.1.1",
    "jest": "^30.0.4",
    "onnxruntime-web": "^1.22.0",
    "ts-jest": "^29.4.0",
    "ts-loader": "^9.5.2",
    "typescript": "^5.8.3",
    "webpack": "^5.100.2",
    "webpack-cli": "^6.0.1"
  },
  "peerDependencies": {
    "onnxruntime-web": ">=1.16.0"
  }
}
