@blueprintjs/select
Version:
Components related to selecting items from a list
89 lines • 2.57 kB
JSON
{
"name": "@blueprintjs/select",
"version": "6.1.8",
"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.16",
"@blueprintjs/core": "^6.11.3",
"@blueprintjs/icons": "^6.8.0"
},
"peerDependencies": {
"@types/react": "18",
"react": "18",
"react-dom": "18"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"devDependencies": {
"@vitejs/plugin-react": "^5.1.0",
"enzyme": "^3.11.0",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "~5.9.3",
"webpack-cli": "^5.1.4",
"vitest": "4.0.7",
"@blueprintjs/stylelint-plugin": "^5.2.2",
"@blueprintjs/node-build-scripts": "^9.3.3",
"@blueprintjs/test-commons": "^4.0.4"
},
"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/tsconfig.build.json",
"compile:cjs": "tsc -p ./src/tsconfig.build.json -m commonjs --verbatimModuleSyntax false --outDir lib/cjs",
"compile:esnext": "tsc -p ./src/tsconfig.build.json -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:vitest:run",
"test:typeCheck": "tsc -p ./src/tsconfig.test.json",
"test:iso": "vitest run --config vitest.config.isotest.mts",
"test:vitest": "vitest",
"test:vitest:run": "vitest run",
"verify": "npm-run-all compile -p dist test lint"
}
}