{
  "name": "@blueprintjs/select",
  "version": "6.1.3",
  "description": "Components related to selecting items from a list",
  "main": "lib/cjs/index.js",
  "module": "lib/esm/index.js",
  "esnext": "lib/esnext/index.js",
  "typings": "lib/esm/index.d.ts",
  "style": "lib/css/blueprint-select.css",
  "files": [
    "lib",
    "src"
  ],
  "sideEffects": [
    "**/*.css"
  ],
  "dependencies": {
    "classnames": "^2.3.1",
    "tslib": "~2.6.2",
    "@blueprintjs/colors": "^5.1.14",
    "@blueprintjs/core": "^6.9.1",
    "@blueprintjs/icons": "^6.6.0"
  },
  "peerDependencies": {
    "@types/react": "18",
    "react": "18",
    "react-dom": "18"
  },
  "peerDependenciesMeta": {
    "@types/react": {
      "optional": true
    }
  },
  "devDependencies": {
    "enzyme": "^3.11.0",
    "karma": "^6.4.2",
    "mocha": "^10.2.0",
    "normalize.css": "^8.0.1",
    "npm-run-all": "^4.1.5",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "react-test-renderer": "^18.3.1",
    "typescript": "~5.3.3",
    "webpack-cli": "^5.1.4",
    "@blueprintjs/karma-build-scripts": "^6.0.12",
    "@blueprintjs/node-build-scripts": "^9.3.1",
    "@blueprintjs/test-commons": "^4.0.4",
    "@blueprintjs/stylelint-plugin": "^5.2.0"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:palantir/blueprint.git",
    "directory": "packages/select"
  },
  "keywords": [
    "palantir",
    "blueprint",
    "components",
    "select",
    "select2",
    "query",
    "multiselect",
    "suggest",
    "typeahead",
    "ui"
  ],
  "author": "Palantir Technologies",
  "license": "Apache-2.0",
  "scripts": {
    "clean": "rm -rf dist/* || rm -rf lib/* || true",
    "compile": "run-p \"compile:*\"",
    "compile:esm": "tsc -p ./src",
    "compile:cjs": "tsc -p ./src -m commonjs --verbatimModuleSyntax false --outDir lib/cjs",
    "compile:esnext": "tsc -p ./src -t esnext --outDir lib/esnext",
    "compile:css": "sass-compile ./src",
    "dev": "run-p \"compile:esm --watch\" \"compile:css --watch\"",
    "dist": "run-s \"dist:*\"",
    "dist:css": "css-dist lib/css",
    "dist:verify": "assert-package-layout",
    "lint": "run-p lint:scss lint:es",
    "lint:scss": "sass-lint",
    "lint:es": "es-lint",
    "lint-fix": "es-lint --fix && sass-lint --fix",
    "test": "run-s test:typeCheck test:iso test:karma",
    "test:typeCheck": "tsc -p ./test",
    "test:iso": "mocha test/isotest.mjs",
    "test:karma": "karma start",
    "test:karma:debug": "karma start --single-run=false --reporters=helpful --debug",
    "verify": "npm-run-all compile -p dist test lint"
  }
}