{
  "name": "color-calendar",
  "version": "3.0.0",
  "description": "A zero-dependency, customizable events calendar widget with themes and event colors.",
  "main": "dist/bundle.cjs.js",
  "module": "dist/bundle.esm.js",
  "browser": "dist/bundle.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/bundle.esm.js",
      "require": "./dist/bundle.cjs.js",
      "types": "./dist/index.d.ts"
    },
    "./react": {
      "import": "./dist/react.esm.js",
      "require": "./dist/react.cjs.js",
      "types": "./dist/react/index.d.ts"
    }
  },
  "author": "Pawan Kolhe (https://pawankolhe.com/)",
  "license": "MIT",
  "devDependencies": {
    "@babel/core": "^7.28.4",
    "@babel/preset-env": "^7.28.3",
    "@biomejs/biome": "2.2.4",
    "@commitlint/cli": "^20.1.0",
    "@commitlint/config-conventional": "^20.0.0",
    "@rollup/plugin-babel": "^6.0.4",
    "@rollup/plugin-commonjs": "^28.0.6",
    "@rollup/plugin-node-resolve": "^16.0.1",
    "@rollup/plugin-strip": "^3.0.4",
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^12.1.4",
    "@storybook/addon-docs": "9.1.10",
    "@storybook/html-vite": "9.1.10",
    "@storybook/react": "^9.1.10",
    "@storybook/react-vite": "^9.1.10",
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.3.0",
    "@tsconfig/recommended": "^1.0.10",
    "@types/react": "^19.2.0",
    "@types/react-dom": "^19.2.0",
    "@vitejs/plugin-react": "^5.0.4",
    "autoprefixer": "^10.4.21",
    "chromatic": "^13.3.0",
    "cross-env": "^10.1.0",
    "del": "^8.0.1",
    "gulp": "^5.0.1",
    "gulp-postcss": "^10.0.0",
    "gulp-sass": "^6.0.1",
    "husky": "^9.1.7",
    "jsdom": "^25.0.1",
    "lint-staged": "^16.2.3",
    "postcss-preset-env": "^10.4.0",
    "react": "^19.2.0",
    "react-dom": "^19.2.0",
    "rimraf": "^6.0.1",
    "rollup": "^4.52.3",
    "rollup-plugin-banner2": "^1.3.1",
    "sass": "^1.93.2",
    "storybook": "9.1.10",
    "typescript": "^5.9.2",
    "vitest": "^2.1.9"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/PawanKolhe/color-calendar.git"
  },
  "bugs": {
    "url": "https://github.com/PawanKolhe/color-calendar/issues"
  },
  "homepage": "https://github.com/PawanKolhe/color-calendar",
  "files": [
    "/dist"
  ],
  "keywords": [
    "calendar",
    "event calendar",
    "date-picker",
    "calendar ui",
    "calendar widget",
    "color calendar",
    "typescript",
    "front-end",
    "sass",
    "web",
    "css",
    "ui",
    "events",
    "component",
    "widget",
    "vanilla",
    "simple",
    "dots",
    "react",
    "react-component",
    "react-wrapper"
  ],
  "peerDependencies": {
    "react": ">=16.8.0",
    "react-dom": ">=16.8.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": false
    },
    "react-dom": {
      "optional": false
    }
  },
  "browserslist": [
    "defaults"
  ],
  "lint-staged": {
    "*.{ts,js,json,css,scss}": [
      "biome check --write"
    ],
    "*.{ts,js}": [
      "biome check --write"
    ]
  },
  "scripts": {
    "start:js": "rollup -c -w",
    "start:css": "gulp watch",
    "prebuild": "rimraf dist",
    "preinstall": "npx only-allow pnpm",
    "build": "rollup -c && gulp",
    "type-check": "tsc -p tsconfig.json --noEmit",
    "clean": "rimraf dist",
    "test": "vitest",
    "test:watch": "vitest --watch",
    "test:ci": "vitest run",
    "format": "biome format --write .",
    "format:check": "biome format .",
    "lint": "biome lint .",
    "lint:fix": "biome lint --write .",
    "check": "biome check .",
    "check:fix": "biome check --write .",
    "storybook": "storybook dev",
    "chromatic": "cross-env npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN",
    "build-storybook": "storybook build"
  }
}