1 | {
|
2 | "name": "@blueprintjs/select",
|
3 | "version": "5.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 | "files": [
|
12 | "dist",
|
13 | "lib",
|
14 | "src"
|
15 | ],
|
16 | "sideEffects": [
|
17 | "**/*.css"
|
18 | ],
|
19 | "scripts": {
|
20 | "clean": "rm -rf dist/* || rm -rf lib/* || true",
|
21 | "compile": "run-p \"compile:*\"",
|
22 | "compile:esm": "tsc -p ./src",
|
23 | "compile:cjs": "tsc -p ./src -m commonjs --verbatimModuleSyntax false --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": "NODE_ENV=production webpack",
|
29 | "dist:css": "css-dist lib/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.mjs",
|
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": "^5.11.0",
|
44 | "@blueprintjs/icons": "^5.11.0",
|
45 | "classnames": "^2.3.1",
|
46 | "tslib": "~2.6.2"
|
47 | },
|
48 | "peerDependencies": {
|
49 | "@types/react": "^16.14.41 || 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": "^5.2.7",
|
60 | "@blueprintjs/node-build-scripts": "^9.2.1",
|
61 | "enzyme": "^3.11.0",
|
62 | "karma": "^6.4.2",
|
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": "~5.3.3",
|
69 | "webpack-cli": "^5.1.4"
|
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 | } |
\ | No newline at end of file |