{
  "name": "@qrph/qrph",
  "description": "Library for parsing and encoding QRPH strings.",
  "author": "Ian Macalinao <me@ianm.com>",
  "version": "0.0.2",
  "license": "Apache-2.0",
  "type": "module",
  "sideEffects": false,
  "files": [
    "dist/",
    "src/",
    "README.md"
  ],
  "keywords": [
    "qrph",
    "qr",
    "emv",
    "qrcode"
  ],
  "dependencies": {
    "tslib": "^2.8.1",
    "zod": "^3.24.1",
    "@qrph/emv-qr": "^0.0.2"
  },
  "devDependencies": {
    "@macalinao/eslint-config": "^4.0.1",
    "@macalinao/tsconfig": "^3.0.0",
    "eslint": "^9.17.0",
    "typescript": "^5.7.2",
    "vitest": "^2.1.8"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": "eslint --fix",
    "*.{md,json}": "prettier --write"
  },
  "scripts": {
    "build": "tsc",
    "clean": "tsc --build --clean && rm -fr dist/",
    "lint": "eslint .",
    "test": "vitest"
  }
}