UNPKG

2.6 kBJSONView Raw
1{
2 "name": "@blueprintjs/select",
3 "version": "4.2.2",
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.3.2",
39 "classnames": "^2.2",
40 "tslib": "~2.3.1"
41 },
42 "peerDependencies": {
43 "react": "^16.8 || 17 || 18",
44 "react-dom": "^16.8 || 17 || 18"
45 },
46 "devDependencies": {
47 "@blueprintjs/karma-build-scripts": "^3.1.1",
48 "@blueprintjs/node-build-scripts": "^5.0.1",
49 "enzyme": "^3.11.0",
50 "karma": "^6.3.17",
51 "mocha": "^9.2.2",
52 "npm-run-all": "^4.1.5",
53 "react": "^16.14.0",
54 "react-dom": "^16.14.0",
55 "react-test-renderer": "^16.14.0",
56 "typescript": "~4.6.2",
57 "webpack-cli": "^3.3.12"
58 },
59 "repository": {
60 "type": "git",
61 "url": "git@github.com:palantir/blueprint.git",
62 "directory": "packages/select"
63 },
64 "keywords": [
65 "palantir",
66 "blueprint",
67 "components",
68 "select",
69 "select2",
70 "query",
71 "multiselect",
72 "suggest",
73 "typeahead",
74 "ui"
75 ],
76 "author": "Palantir Technologies",
77 "license": "Apache-2.0"
78}