{
  "name": "qr-core",
  "version": "1.0.7",
  "description": "Deterministic, zero-dependency QR Code Model 2 encoder (matrix-only)",
  "type": "module",
  "main": "./dist/src/index.js",
  "types": "./dist/src/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "import": "./dist/src/index.js",
      "default": "./dist/src/index.js"
    }
  },
  "keywords": [
    "qr",
    "qrcode",
    "qr-code",
    "encoder",
    "matrix",
    "typescript",
    "esm"
  ],
  "author": "goker <https://goker.me>",
  "license": "MIT",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": false,
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "prepublishOnly": "npm run build",
    "test": "vitest",
    "lint": "biome check src tests bench",
    "format": "biome format --write src tests bench",
    "bench": "npm run build && node dist/bench/bench.js",
    "compare": "tsc -p tsconfig.compare.json && node dist-compare/bench/compare.js"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.3.13",
    "@types/node": "^25.1.0",
    "@types/pngjs": "^6.0.5",
    "jsqr": "^1.4.0",
    "pngjs": "^7.0.0",
    "typescript": "^5.9.3",
    "vitest": "^3.2.4"
  }
}