UNPKG

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