{
  "version": "6.0.0",
  "license": "MIT",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./scss/": "./scss/",
    "./inject-style": {
      "types": "./dist/inject-style.d.ts",
      "require": "./dist/inject-style.js",
      "import": "./dist/inject-style.esm.mjs"
    },
    "./dist/ReactContexify.css": "./dist/ReactContexify.min.css",
    "./dist/ReactContexify.css.map": "./dist/ReactContexify.css.map",
    "./ReactContexify.css": "./dist/ReactContexify.min.css",
    "./ReactContexify.css.map": "./dist/ReactContexify.css.map"
  },
  "files": [
    "dist",
    "scss"
  ],
  "scripts": {
    "start": "cd example && yarn start",
    "build": "tsup && yarn run build:style",
    "test": "cypress run",
    "cypress:open": "cypress open",
    "sass": "sass scss/main.scss dist/ReactContexify.css",
    "postsass": "postcss dist/ReactContexify.css --use autoprefixer -m -o dist/ReactContexify.css",
    "build:style": "yarn run sass && cssnano dist/ReactContexify.css dist/ReactContexify.min.css --no-zindex --no-reduceIdents && yarn run style2js",
    "style2js": "style2js --out-dir dist dist/ReactContexify.min.css"
  },
  "peerDependencies": {
    "react": ">=16",
    "react-dom": ">=16"
  },
  "prettier": {
    "printWidth": 80,
    "semi": true,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "name": "react-contexify",
  "author": "Fadi Khadra <fdkhadra@gmail.com> (https://github.com/fkhadra)",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fkhadra/react-contexify.git"
  },
  "bugs": {
    "url": "https://github.com/fkhadra/react-contexify/issues"
  },
  "description": "Add contextmenu to your react component with ease",
  "keywords": [
    "react",
    "context menu",
    "react-component",
    "menu",
    "react-contextmenu",
    "react-contexify",
    "popup"
  ],
  "devDependencies": {
    "@types/react": "^18.0.25",
    "@types/react-dom": "^18.0.8",
    "cssnano": "^5.1.14",
    "cssnano-cli": "^1.0.5",
    "cypress": "^11.0.1",
    "postcss": "^8.4.18",
    "postcss-cli": "^10.0.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "sass": "^1.56.1",
    "style2js": "^1.0.1",
    "tsup": "^6.4.0",
    "typescript": "^4.8.4"
  },
  "dependencies": {
    "clsx": "^1.2.1"
  }
}
