{
  "name": "selective-ui",
  "version": "1.4.4",
  "description": "An overlay for the HTML select element.",
  "author": "Huỳnh Công Xuân Mai",
  "license": "MIT",
  "sideEffects": false,
  "main": "dist/selective-ui.umd.js",
  "module": "dist/selective-ui.esm.js",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/selective-ui.esm.js",
      "require": "./dist/selective-ui.umd.js"
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "clean": "rimraf dist",
    "build": "npm run clean && rollup --config rollup.config.ts --configPlugin typescript",
    "build:ts": "rimraf compiled && tsc -p tsconfig.build.json",
    "watch": "rollup -c --watch",
    "dev": "rollup -c -w",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:unit": "jest tests/unit",
    "test:integration": "jest tests/integration",
    "test:verbose": "jest --verbose",
    "test:ci": "jest --ci --coverage --maxWorkers=2",
    "lint": "eslint src/",
    "lint:fix": "eslint src/ --fix",
    "prepublishOnly": "npm run build",
    "typecheck": "tsc -p tsconfig.json --noEmit"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^29.0.2",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@rollup/plugin-replace": "^6.0.3",
    "@rollup/plugin-terser": "^1.0.0",
    "@rollup/plugin-typescript": "^12.3.0",
    "@testing-library/dom": "^10.4.1",
    "@testing-library/jest-dom": "^6.9.1",
    "@types/jest": "^30.0.0",
    "autoprefixer": "^10.4.27",
    "cssnano": "^7.1.4",
    "jest": "^30.3.0",
    "jest-environment-jsdom": "^30.3.0",
    "mutation-observer": "^1.0.3",
    "postcss": "^8.5.8",
    "rimraf": "^6.1.3",
    "rollup": "^4.60.1",
    "rollup-plugin-brotli": "^3.1.0",
    "rollup-plugin-postcss": "^4.0.2",
    "ts-jest": "^29.4.9",
    "ts-node": "^10.9.2",
    "tslib": "^2.8.1",
    "typescript": "^6.0.2"
  },
  "keywords": [
    "select",
    "dropdown",
    "ui",
    "component",
    "custom-select",
    "searchable-select"
  ],
  "browserslist": [
    ">0.25%",
    "not dead"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/maihcx/selective-ui"
  },
  "bugs": {
    "url": "https://github.com/maihcx/selective-ui/issues"
  },
  "homepage": "https://github.com/maihcx/selective-ui"
}
