{
  "name": "react-calendar-datetime-picker",
  "version": "2.0.0",
  "description": "A modern, fast and small calendar for React with English and Persian (Jalali) support",
  "author": "MehdiNasiri",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/mehdi-nasiri-jahroodi/react-calendar-datetime-picker"
  },
  "homepage": "https://mehdi-nasiri-jahroodi.github.io/react-calendar-datetime-picker/",
  "types": "./dist/index.d.ts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./style.css": {
      "import": "./dist/style.css",
      "require": "./dist/style.css"
    }
  },
  "sideEffects": [
    "**/*.css"
  ],
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "source": "./src/index.ts",
  "files": [
    "dist/"
  ],
  "keywords": [
    "react",
    "calendar",
    "date-picker",
    "datetime-picker",
    "persian",
    "jalali",
    "gregorian",
    "typescript"
  ],
  "peerDependencies": {
    "react": ">=18.0.0",
    "react-dom": ">=18.0.0"
  },
  "dependencies": {
    "jalaali-js": "^1.2.8"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.1",
    "@playwright/test": "^1.57.0",
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.3.0",
    "@types/jalaali-js": "^1.2.0",
    "@types/node": "^24.10.1",
    "@types/react": "^19.2.4",
    "@types/react-dom": "^19.2.3",
    "@typescript-eslint/eslint-plugin": "^8.46.4",
    "@typescript-eslint/parser": "^8.46.4",
    "@vitejs/plugin-react": "^5.1.1",
    "@vitest/coverage-v8": "^4.0.8",
    "autoprefixer": "^10.4.22",
    "concurrently": "^9.1.2",
    "eslint": "^9.39.1",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-react-hooks": "^7.0.1",
    "eslint-plugin-react-refresh": "^0.4.24",
    "globals": "^15.9.0",
    "jsdom": "^27.2.0",
    "pnpm": "^10.22.0",
    "postcss": "^8.5.6",
    "prettier": "^3.6.2",
    "react": "^19.2.0",
    "react-dom": "^19.2.0",
    "rimraf": "^6.1.0",
    "sass": "^1.94.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.46.4",
    "vite": "^7.2.2",
    "vite-plugin-dts": "^4.5.4",
    "vitest": "^4.0.8"
  },
  "scripts": {
    "dev": "vite",
    "build": "tsc && vite build",
    "build:watch": "tsc && vite build --watch",
    "preview": "vite preview",
    "dev:examples": "pnpm run build && concurrently -n examples,docs -c blue,green \"cd examples && vite\" \"cd docs && pnpm dev\"",
    "dev:examples:only": "cd examples && vite",
    "build:examples": "cd examples && vite build",
    "dev:docs": "pnpm run build && cd docs && pnpm dev",
    "dev:docs:fresh": "pnpm run clean && pnpm run build && cd docs && rm -rf node_modules/react-calendar-datetime-picker && pnpm install && pnpm dev",
    "dev:docs:watch": "concurrently -n build,docs -c yellow,green \"pnpm run build:watch\" \"cd docs && pnpm dev\"",
    "build:docs": "cd docs && pnpm build",
    "start:docs": "cd docs && pnpm start",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:unit": "vitest run",
    "test:unit:watch": "vitest watch",
    "test:performance": "vitest run performance/tests/calendar-performance.test.tsx",
    "test:performance:extract": "node scripts/extract-performance-metrics.js",
    "test:performance:json": "vitest run tests/unit/calendar-performance.test.tsx --reporter=json --outputFile=performance-results.json",
    "test:e2e": "playwright test",
    "test:e2e:ui": "playwright test --ui",
    "test:e2e:headed": "playwright test --headed",
    "test:e2e:debug": "playwright test --debug",
    "test:all": "pnpm run test:unit && pnpm run test:e2e",
    "performance:report": "node performance/scripts/generate-performance-report.js report",
    "performance:compare": "node performance/scripts/generate-performance-report.js compare",
    "lint": "eslint . --report-unused-disable-directives --max-warnings 0",
    "lint:fix": "eslint . --fix",
    "format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
    "format:check": "prettier --check \"**/*.{ts,tsx,json,md}\"",
    "typecheck": "tsc --noEmit",
    "clean": "rimraf dist",
    "clean:all": "pnpm run clean && rimraf docs/.next && rimraf examples/dist && find . -name '*.tsbuildinfo' -delete",
    "rebuild": "pnpm run clean:all && pnpm run build && cd docs && rm -rf node_modules/react-calendar-datetime-picker && pnpm install && cd .."
  }
}