{
  "name": "@akamfoad/qr",
  "version": "0.4.0",
  "license": "MIT",
  "description": "Fully typed QRCode encoding implementation in JavaScript with no dependencies!",
  "homepage": "https://akamfoad.github.io/qr/",
  "bugs": "https://github.com/akamfoad/qr/issues",
  "repository": "https://github.com/akamfoad/qr",
  "keywords": [
    "qrcode",
    "qr-code",
    "qr",
    "qrcode-generator"
  ],
  "author": "akamfoad",
  "files": [
    "dist",
    "src"
  ],
  "main": "dist/cjs/qr.cjs",
  "types": "dist/qr.d.mts",
  "module": "dist/qr.mjs",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/qr.d.mts",
        "default": "./dist/qr.mjs"
      },
      "require": {
        "types": "./dist/cjs/qr.d.ts",
        "default": "./dist/cjs/qr.cjs"
      }
    }
  },
  "sideEffects": false,
  "engines": {
    "node": ">=16"
  },
  "scripts": {
    "start": "tsup --watch",
    "build": "tsup",
    "test": "vitest",
    "lint": "eslint",
    "prepare": "tsup && husky install",
    "docs": "typedoc --out typedocs src/index.ts"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^6.11.0",
    "@typescript-eslint/parser": "^6.11.0",
    "eslint": "^8.54.0",
    "eslint-plugin-prettier": "^5.0.1",
    "husky": "^8.0.0",
    "lint-staged": "^15.1.0",
    "prettier": "^3.1.0",
    "tsup": "^8.0.0",
    "typedoc": "^0.25.3",
    "typescript": "^5.2.2",
    "vitest": "^0.34.6"
  }
}
