{
  "name": "@voicefield/core",
  "version": "0.2.9",
  "description": "Core types and utilities for Voicefield",
  "keywords": [
    "voicefield",
    "voice-input",
    "speech-to-text",
    "types"
  ],
  "homepage": "https://voicefield.dev",
  "repository": {
    "type": "git",
    "url": "https://github.com/tatargabor/voicefield",
    "directory": "packages/core"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "devDependencies": {
    "typescript": "^5.7.0"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "clean": "rm -rf dist",
    "lint": "eslint src/",
    "test": "vitest run"
  }
}