{
  "name": "@desource/phone-mask-react",
  "version": "1.6.3",
  "description": "📱 React component and hook for international phone number input with smart masking. Powered by @desource/phone-mask and Google libphonenumber.",
  "keywords": [
    "phone",
    "phone-input",
    "phone-mask",
    "phone-number",
    "international-phone",
    "react",
    "libphonenumber",
    "react-component",
    "react-hook",
    "input-mask",
    "validation",
    "tel",
    "telephone",
    "country-code",
    "formatting"
  ],
  "author": "Stefan Popov <stefan@desource-labs.org>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DeSource-Labs/phone-mask.git",
    "directory": "packages/phone-mask-react"
  },
  "bugs": {
    "url": "https://github.com/DeSource-Labs/phone-mask/issues"
  },
  "homepage": "https://github.com/DeSource-Labs/phone-mask/tree/main/packages/phone-mask-react#readme",
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./core": {
      "types": "./dist/types/core.d.ts",
      "import": "./dist/core.mjs",
      "require": "./dist/core.cjs"
    },
    "./assets/lib.css": "./dist/phone-mask-react.css"
  },
  "files": [
    "dist",
    "CHANGELOG.md",
    "README.md"
  ],
  "peerDependencies": {
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0"
  },
  "dependencies": {
    "@desource/phone-mask": "1.6.3"
  },
  "devDependencies": {
    "@testing-library/react": "^16.3.3",
    "@types/react": "^19.2.18",
    "@types/react-dom": "^19.2.7",
    "@vitejs/plugin-react": "^6.1.1",
    "react": "^19.2.8",
    "react-dom": "^19.2.8"
  },
  "scripts": {
    "clean": "rimraf dist tsconfig.tsbuildinfo test-results coverage",
    "clean:modules": "rimraf node_modules",
    "dev": "cd demo && vite",
    "build": "pnpm clean && pnpm build:internal",
    "build:internal": "pnpm build:lib && pnpm build:types && pnpm build:css",
    "build:lib": "vite build",
    "build:types": "tsc --project tsconfig.json",
    "build:css": "sass src/style.scss dist/phone-mask-react.css --no-source-map --style=compressed",
    "typecheck": "tsc --noEmit",
    "test:unit": "vitest run",
    "test:unit:coverage": "vitest run --coverage.enabled --coverage.provider=v8 --coverage.reporter=lcov --coverage.reportsDirectory=coverage",
    "test:e2e": "playwright test"
  }
}