12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- {
- "name": "@blueprintjs/icons",
- "version": "3.27.0",
- "description": "Components, fonts, icons, and css files for creating and displaying icons.",
- "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-icons.css",
- "unpkg": "dist/icons.bundle.js",
- "sideEffects": [
- "**/*.css"
- ],
- "scripts": {
- "clean": "rm -rf dist/* && rm -rf lib/* && rm -rf src/generated/*",
- "compile": "npm-run-all -s \"compile:pre\" -p \"compile:*\"",
- "compile:pre": "generate-icons-source",
- "compile:esm": "tsc -p ./src",
- "compile:cjs": "tsc -p ./src -m commonjs --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": "cross-env NODE_ENV=production webpack",
- "dist:css": "css-dist lib/css/*.css",
- "dist:variables": "generate-css-variables generated/_icon-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:typeCheck": "tsc -p ./test",
- "test:iso": "mocha test/isotest.js",
- "verify": "npm-run-all compile -p dist test lint"
- },
- "dependencies": {
- "classnames": "^2.2",
- "tslib": "~1.13.0"
- },
- "devDependencies": {
- "@blueprintjs/node-build-scripts": "^1.5.1",
- "@blueprintjs/test-commons": "^0.10.12",
- "enzyme": "^3.11.0",
- "mocha": "^8.2.1",
- "npm-run-all": "^4.1.5",
- "react": "^16.14.0",
- "react-dom": "^16.14.0",
- "react-test-renderer": "^16.14.0",
- "typescript": "~4.1.2",
- "webpack-cli": "^3.3.12"
- },
- "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"
- }
|