{
  "name": "@saraudio/soniox",
  "version": "0.5.1",
  "description": "Soniox transcription provider for SARAUDIO",
  "license": "MIT",
  "sideEffects": false,
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/**/*",
    "CHANGELOG.md"
  ],
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./schema": {
      "types": "./dist/schema.d.ts",
      "import": "./dist/schema.mjs",
      "require": "./dist/schema.js"
    },
    "./server": {
      "types": "./dist/server/session-auth.d.ts",
      "import": "./dist/server/session-auth.mjs",
      "require": "./dist/server/session-auth.js"
    }
  },
  "dependencies": {
    "zod": "^4.2.1",
    "@saraudio/utils": "0.1.0",
    "@saraudio/core": "0.5.0"
  },
  "devDependencies": {
    "@types/node": "^24.9.1",
    "@vitest/coverage-v8": "^4.0.3",
    "@vitest/ui": "^4.0.3",
    "happy-dom": "^20.0.8",
    "tsup": "^8.5.0",
    "typescript": "^5.9.3",
    "vitest": "^4.0.3"
  },
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/teunlao/silence-aware-recorder.git",
    "directory": "packages/soniox"
  },
  "homepage": "https://github.com/teunlao/silence-aware-recorder#readme",
  "bugs": {
    "url": "https://github.com/teunlao/silence-aware-recorder/issues"
  },
  "keywords": [
    "audio",
    "stt",
    "soniox",
    "websocket",
    "transcription",
    "realtime"
  ],
  "scripts": {
    "build": "pnpm clean && tsup",
    "dev": "tsup --watch",
    "clean": "rm -rf dist *.tsbuildinfo",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "typecheck": "tsc --noEmit",
    "test": "vitest --run",
    "test:watch": "vitest",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest --coverage"
  }
}