UNPKG

3.6 kBJSONView Raw
1{
2 "name": "@blueprintjs/core",
3 "version": "3.51.3",
4 "description": "Core styles & components",
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.css",
10 "unpkg": "dist/core.bundle.js",
11 "sideEffects": [
12 "**/*.css",
13 "lib/esm/components/index.js",
14 "lib/esm/common/configureDom4.js",
15 "lib/esnext/components/index.js",
16 "lib/esnext/common/configureDom4.js",
17 "lib/cjs/components/index.js",
18 "lib/cjs/common/configureDom4.js"
19 ],
20 "bin": {
21 "upgrade-blueprint-2.0.0-rename": "scripts/upgrade-blueprint-2.0.0-rename.sh",
22 "upgrade-blueprint-3.0.0-rename": "scripts/upgrade-blueprint-3.0.0-rename.sh"
23 },
24 "scripts": {
25 "clean": "rm -rf dist/* && rm -rf lib/*",
26 "compile": "run-p \"compile:*\"",
27 "compile:esm": "tsc -p ./src",
28 "compile:cjs": "tsc -p ./src -m commonjs --outDir lib/cjs",
29 "compile:esnext": "tsc -p ./src -t esnext --outDir lib/esnext",
30 "compile:css": "sass-compile ./src --functions ./scripts/sass-custom-functions.js",
31 "dev": "run-p \"compile:esm -- --watch\" \"compile:css -- --watch\"",
32 "dist": "run-s \"dist:*\"",
33 "dist:bundle": "cross-env NODE_ENV=production webpack",
34 "dist:css": "css-dist lib/css/*.css",
35 "dist:variables": "generate-css-variables --retainDefault true common/_colors.scss common/_color-aliases.scss common/_variables.scss",
36 "dist:verify": "assert-package-layout",
37 "lint": "run-p lint:scss lint:es",
38 "lint:scss": "sass-lint",
39 "lint:es": "es-lint",
40 "lint-fix": "es-lint --fix && sass-lint --fix",
41 "test": "run-s test:typeCheck test:iso test:karma",
42 "test:typeCheck": "tsc -p ./test",
43 "test:iso": "mocha test/isotest.js",
44 "test:karma": "karma start",
45 "test:karma:debug": "karma start --single-run=false --reporters=helpful --debug",
46 "verify": "npm-run-all compile -p dist test lint"
47 },
48 "dependencies": {
49 "@blueprintjs/colors": "^4.0.0-alpha.1",
50 "@blueprintjs/icons": "^3.31.0",
51 "@types/dom4": "^2.0.1",
52 "classnames": "^2.2",
53 "dom4": "^2.1.5",
54 "normalize.css": "^8.0.1",
55 "popper.js": "^1.16.1",
56 "react-lifecycles-compat": "^3.0.4",
57 "react-popper": "^1.3.7",
58 "react-transition-group": "^2.9.0",
59 "resize-observer-polyfill": "^1.5.1",
60 "tslib": "~1.13.0"
61 },
62 "peerDependencies": {
63 "react": "^15.3.0 || 16 || 17",
64 "react-dom": "^15.3.0 || 16 || 17"
65 },
66 "devDependencies": {
67 "@blueprintjs/karma-build-scripts": "^2.0.2",
68 "@blueprintjs/node-build-scripts": "^1.6.1",
69 "@blueprintjs/test-commons": "^0.10.14",
70 "@testing-library/react": "^11.2.5",
71 "enzyme": "^3.11.0",
72 "karma": "^5.2.3",
73 "mocha": "^8.2.1",
74 "npm-run-all": "^4.1.5",
75 "react": "^16.14.0",
76 "react-dom": "^16.14.0",
77 "react-test-renderer": "^16.14.0",
78 "sass-inline-svg": "^1.2.3",
79 "typescript": "~4.1.2",
80 "webpack-cli": "^3.3.12"
81 },
82 "repository": {
83 "type": "git",
84 "url": "git@github.com:palantir/blueprint.git",
85 "directory": "packages/core"
86 },
87 "keywords": [
88 "palantir",
89 "blueprint",
90 "components",
91 "styles",
92 "theme",
93 "ui"
94 ],
95 "author": "Palantir Technologies",
96 "license": "Apache-2.0"
97}