{
  "name": "@asafarim/dd-menu",
  "version": "1.5.0",
  "description": "A minimal, elegant, and highly customizable dropdown menu React component. Perfect for navbar, sidebar, or any dropdown needs with beautiful theming and smooth animations.",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./index.css": "./src/index.css",
    "./styles/dd-menu.css": "./src/styles/dd-menu.css",
    "./styles/dd-menu-wrapper.css": "./src/styles/dd-menu-wrapper.css"
  },
  "files": [
    "dist",
    "src/index.css",
    "src/styles",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "asafarim",
    "react",
    "dropdown",
    "menu",
    "dd-menu",
    "recursive",
    "typescript"
  ],
  "author": "Ali Safari <asafarim@gmail.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/AliSafari-IT/dd-menu.git"
  },
  "homepage": "https://alisafari-it.github.io/dd-menu/",
  "bugs": {
    "url": "https://github.com/AliSafari-IT/dd-menu/issues"
  },
  "peerDependencies": {
    "react": ">=16.8.0",
    "react-dom": ">=16.8.0"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "@types/react": "^18.0.0",
    "@types/react-dom": "^18.0.0",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "@vitest/coverage-v8": "^2.0.0",
    "eslint": "^9.0.0",
    "react": "^18.0.0",
    "react-dom": "^18.0.0",
    "rimraf": "^6.0.0",
    "tsup": "^8.0.0",
    "typescript": "^5.0.0",
    "vitest": "^2.1.9"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "license": "MIT",
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest",
    "test:watch": "vitest --watch",
    "test:coverage": "vitest --coverage",
    "lint": "eslint src --ext .ts,.tsx",
    "lint:fix": "eslint src --ext .ts,.tsx --fix",
    "type-check": "tsc --noEmit",
    "clean": "rimraf dist",
    "demo": "pnpm run build && cd demo && pnpm run dev",
    "predeploy": "pnpm run build && cd demo && pnpm run build && cd ..",
    "deploy": "gh-pages -d demo/dist"
  }
}