UNPKG

@blueprintjs/core

Version:

Core styles & components

106 lines 3.44 kB
{ "name": "@blueprintjs/core", "version": "5.19.0", "description": "Core styles & components", "main": "lib/cjs/index.js", "module": "lib/esm/index.js", "esnext": "lib/esnext/index.js", "typings": "lib/esm/index.d.ts", "style": "lib/css/blueprint.css", "unpkg": "dist/core.bundle.js", "files": [ "dist", "lib", "scripts", "src" ], "sideEffects": [ "**/*.css", "lib/cjs/components/context-menu/contextMenuSingleton.js", "lib/esm/components/context-menu/contextMenuSingleton.js", "lib/esnext/components/context-menu/contextMenuSingleton.js" ], "bin": { "upgrade-blueprint-2.0.0-rename": "scripts/upgrade-blueprint-2.0.0-rename.sh", "upgrade-blueprint-3.0.0-rename": "scripts/upgrade-blueprint-3.0.0-rename.sh" }, "scripts": { "clean": "rm -rf dist/* || rm -rf lib/* || true", "compile": "run-p \"compile:*\"", "compile:esm": "tsc -p ./src", "compile:cjs": "tsc -p ./src -m commonjs --verbatimModuleSyntax false --outDir lib/cjs", "compile:esnext": "tsc -p ./src -t esnext --outDir lib/esnext", "compile:css": "sass-compile ./src", "dev": "run-p \"compile:esm --watch\" \"compile:css --watch\"", "dist": "run-s \"dist:*\"", "dist:bundle": "NODE_ENV=production webpack", "dist:css": "css-dist lib/css", "dist:variables": "generate-css-variables --retainDefault true ../../colors/src/_colors.scss common/_color-aliases.scss common/_variables.scss", "dist:verify": "assert-package-layout", "lint": "run-p lint:scss lint:es", "lint:scss": "sass-lint", "lint:es": "es-lint", "lint-fix": "es-lint --fix && sass-lint --fix", "test": "run-s test:typeCheck test:iso test:karma", "test:typeCheck": "tsc -p ./test", "test:iso": "mocha test/isotest.mjs", "test:karma": "karma start", "test:karma:debug": "karma start --single-run=false --reporters=helpful --debug", "verify": "npm-run-all compile -p dist test lint" }, "dependencies": { "@blueprintjs/colors": "^5.1.8", "@blueprintjs/icons": "^5.22.0", "@popperjs/core": "^2.11.8", "classnames": "^2.3.1", "normalize.css": "^8.0.1", "react-popper": "^2.3.0", "react-transition-group": "^4.4.5", "react-uid": "^2.3.3", "tslib": "~2.6.2", "use-sync-external-store": "^1.2.0" }, "peerDependencies": { "@types/react": "^16.14.41 || 17 || 18", "react": "^16.8 || 17 || 18", "react-dom": "^16.8 || 17 || 18" }, "peerDependenciesMeta": { "@types/react": { "optional": true } }, "devDependencies": { "@blueprintjs/karma-build-scripts": "^5.2.23", "@blueprintjs/node-build-scripts": "^9.2.7", "@blueprintjs/test-commons": "^3.0.8", "@testing-library/dom": "^10.4.0", "@testing-library/react": "^16.1.0", "@testing-library/user-event": "^13.5.0", "@types/use-sync-external-store": "0.0.6", "enzyme": "^3.11.0", "karma": "^6.4.2", "mocha": "^10.2.0", "npm-run-all": "^4.1.5", "react": "^18.3.1", "react-dom": "^18.3.1", "react-test-renderer": "^18.3.1", "typescript": "~5.3.3", "webpack-cli": "^5.1.4" }, "repository": { "type": "git", "url": "git@github.com:palantir/blueprint.git", "directory": "packages/core" }, "keywords": [ "palantir", "blueprint", "components", "styles", "theme", "ui" ], "author": "Palantir Technologies", "license": "Apache-2.0" }