{
  "name": "web-barcode-scanner",
  "version": "1.0.0",
  "description": "Browser-based library that aims to help overcome common pitfalls with html5-based barcode scanning.",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/brunolau/web-barcode-scanner.git"
  },
  "license": "MIT",
  "author": {
    "name": "brunolau",
    "email": "brunolau@users.noreply.github.com"
  },
  "keywords": [],
  "bugs": {
    "url": "https://github.com/brunolau/web-barcode-scanner/issues"
  },
  "homepage": "https://github.com/brunolau/web-barcode-scanner",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "dev": "vite",
    "build": "tsc && vite build",
    "preview": "vite preview",
    "build:lib": "vite build && npm run copy:demo",
    "copy:demo": "node cli/copy-to-example.js"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "typescript": "^5.6.3",
    "vite": "^5.0.0",
    "vite-plugin-dts": "^3.0.0"
  },
  "dependencies": {
    "@undecaf/zbar-wasm": "^0.11.0"
  }
}