UNPKG

2.81 kBJSONView Raw
1{
2 "name": "@blueprintjs/select",
3 "version": "4.9.12",
4 "description": "Components related to selecting items from a list",
5 "main": "lib/cjs/index.js",
6 "module": "lib/esm/index.js",
7 "esnext": "lib/esnext/index.js",
8 "typings": "lib/esm/index.d.ts",
9 "style": "lib/css/blueprint-select.css",
10 "unpkg": "dist/select.bundle.js",
11 "sideEffects": [
12 "**/*.css"
13 ],
14 "scripts": {
15 "clean": "rm -rf dist/* && rm -rf lib/*",
16 "compile": "run-p \"compile:*\"",
17 "compile:esm": "tsc -p ./src",
18 "compile:cjs": "tsc -p ./src -m commonjs --outDir lib/cjs",
19 "compile:esnext": "tsc -p ./src -t esnext --outDir lib/esnext",
20 "compile:css": "sass-compile ./src",
21 "dev": "run-p \"compile:esm -- --watch\" \"compile:css -- --watch\"",
22 "dist": "run-s \"dist:*\"",
23 "dist:bundle": "cross-env NODE_ENV=production webpack",
24 "dist:css": "css-dist lib/css/*.css",
25 "dist:verify": "assert-package-layout",
26 "lint": "run-p lint:scss lint:es",
27 "lint:scss": "sass-lint",
28 "lint:es": "es-lint",
29 "lint-fix": "es-lint --fix && sass-lint --fix",
30 "test": "run-s test:typeCheck test:iso test:karma",
31 "test:typeCheck": "tsc -p ./test",
32 "test:iso": "mocha test/isotest.js",
33 "test:karma": "karma start",
34 "test:karma:debug": "karma start --single-run=false --reporters=helpful --debug",
35 "verify": "npm-run-all compile -p dist test lint"
36 },
37 "dependencies": {
38 "@blueprintjs/core": "^4.17.8",
39 "@blueprintjs/popover2": "^1.13.12",
40 "classnames": "^2.3.1",
41 "tslib": "~2.5.0"
42 },
43 "peerDependencies": {
44 "@types/react": "^16.14.32 || 17 || 18",
45 "react": "^16.8 || 17 || 18",
46 "react-dom": "^16.8 || 17 || 18"
47 },
48 "peerDependenciesMeta": {
49 "@types/react": {
50 "optional": true
51 }
52 },
53 "devDependencies": {
54 "@blueprintjs/karma-build-scripts": "^4.0.18",
55 "@blueprintjs/node-build-scripts": "^7.1.0",
56 "enzyme": "^3.11.0",
57 "karma": "^6.4.1",
58 "mocha": "^10.2.0",
59 "npm-run-all": "^4.1.5",
60 "react": "^16.14.0",
61 "react-dom": "^16.14.0",
62 "react-test-renderer": "^16.14.0",
63 "typescript": "~4.8.4",
64 "webpack-cli": "^5.0.1"
65 },
66 "repository": {
67 "type": "git",
68 "url": "git@github.com:palantir/blueprint.git",
69 "directory": "packages/select"
70 },
71 "keywords": [
72 "palantir",
73 "blueprint",
74 "components",
75 "select",
76 "select2",
77 "query",
78 "multiselect",
79 "suggest",
80 "typeahead",
81 "ui"
82 ],
83 "author": "Palantir Technologies",
84 "license": "Apache-2.0"
85}