UNPKG

@blueprintjs/icons

Version:

Components, fonts, icons, and css files for creating and displaying icons.

89 lines 2.81 kB
{ "name": "@blueprintjs/icons", "version": "5.22.0", "description": "Components, fonts, icons, and css files for creating and displaying icons.", "main": "lib/cjs/generated/index.js", "module": "lib/esm/generated/index.js", "esnext": "lib/esnext/generated/index.js", "typings": "lib/esm/generated/index.d.ts", "style": "lib/css/blueprint-icons.css", "unpkg": "dist/icons.bundle.js", "files": [ "dist", "lib", "src", "icons.json" ], "sideEffects": [ "**/*.css" ], "scripts": { "clean": "rm -rf dist/* || rm -rf lib/**/* || rm -rf src/generated/* || true", "compile": "npm-run-all -s \"generate-icon-src\" -p \"compile:*\" -p \"copy:*\"", "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", "copy:scss": "scripts/copy-scss.sh", "copy:fonts": "scripts/copy-fonts.sh", "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:verify": "assert-package-layout", "generate-icon-src": "node scripts/generate-icon-fonts.mjs && node scripts/generate-icon-paths.mjs && node scripts/generate-icon-components.mjs", "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:typeCheck": "tsc -p ./test", "test:iso": "mocha test/isotest.mjs", "verify": "npm-run-all compile -p dist test lint" }, "dependencies": { "change-case": "^4.1.2", "classnames": "^2.3.1", "tslib": "~2.6.2" }, "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/node-build-scripts": "^9.2.7", "@blueprintjs/test-commons": "^3.0.8", "@twbs/fantasticon": "^2.7.2", "@types/handlebars": "^4.1.0", "enzyme": "^3.11.0", "handlebars": "^4.7.8", "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", "svg-parser": "^2.0.4", "typescript": "~5.3.3", "webpack-cli": "^5.1.4" }, "repository": { "type": "git", "url": "git@github.com:palantir/blueprint.git", "directory": "packages/icons" }, "keywords": [ "palantir", "blueprint", "theme", "react", "icon" ], "author": "Palantir Technologies", "license": "Apache-2.0" }