{
  "name": "@hyssostech/voskspeech-plugin",
  "version": "0.1.1",
  "description": "Vosk offline speech recognition plugin for Sketch-thru-Plan. Runs entirely in-browser via WebAssembly using a domain-adapted Kaldi model.",
  "main": "dist/stpvoskspeech-bundle-min.js",
  "types": "dist/stpvoskspeech-bundle.d.ts",
  "module": "dist/stpvoskspeech-bundle.esm.js",
  "files": [
    "dist/",
    "model/",
    "vosk-processor.js",
    "LICENSE",
    "NOTICES.md",
    "README.md"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "clean": "rimraf dist build",
    "clean:docs": "rimraf docs",
    "build": "npm run clean && tsc --project tsconfig.json && npm run bundle",
    "bundle": "rollup --config rollup.config.mjs && npm run bundle:min",
    "bundle:min": "terser --ecma 6 --compress --mangle --module -o dist/stpvoskspeech-bundle-min.js -- dist/stpvoskspeech-bundle.js",
    "build:dev": "npm run clean && tsc --project tsconfig.json && npm run bundle:dev",
    "bundle:dev": "rollup --config rollup.config.mjs",
    "build:docs": "npm run clean:docs && typedoc --tsconfig tsconfig.json",
    "prepublishOnly": "npm run build",
    "publish:dry": "npm run build && npm pack"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hyssostech/sketch-thru-plan-sdk-js.git",
    "directory": "plugins/speech/voskspeech-plugin"
  },
  "author": "Hyssos Tech",
  "license": "MIT",
  "peerDependencies": {
    "sketch-thru-plan-sdk": "^0.6.15"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^28.0.3",
    "@rollup/plugin-node-resolve": "^16.0.1",
    "sketch-thru-plan-sdk": "file:../../.."
  },
  "dependencies": {
    "vosk-browser": "^0.0.8"
  }
}
