{
  "name": "onnx-asr-web",
  "version": "0.1.3",
  "description": "JavaScript ONNX ASR for Node.js and browser",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./node": {
      "types": "./dist/node.d.ts",
      "import": "./dist/node.js"
    },
    "./browser": {
      "types": "./dist/browser.d.ts",
      "import": "./dist/browser.js"
    }
  },
  "scripts": {
    "build": "node scripts/build.mjs",
    "api:docs": "node scripts/generate-api-docs.mjs",
    "check": "tsc --noEmit && node --check examples/node/transcribe.mjs examples/browser/main.js examples/browser-cdn/main.js scripts/build.mjs scripts/generate-api-docs.mjs",
    "test": "npm run build && node --test tests/*.test.mjs",
    "prepublishOnly": "npm run build && npm run check"
  },
  "files": [
    "dist",
    "API.md",
    "README.md",
    "LICENSE",
    "CONTRIBUTING.md"
  ],
  "keywords": [
    "onnx",
    "asr",
    "onnxruntime-web",
    "speech-to-text"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/SanderGi/onnx-asr-web.git"
  },
  "homepage": "https://github.com/SanderGi/onnx-asr-web#readme",
  "bugs": {
    "url": "https://github.com/SanderGi/onnx-asr-web/issues"
  },
  "dependencies": {
    "onnxruntime-web": "^1.24.2"
  },
  "devDependencies": {
    "@types/node": "^25.4.0",
    "esbuild": "^0.27.3",
    "typescript": "^5.9.3"
  }
}
