{
  "name": "@blueprintjs/icons",
  "version": "6.7.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",
  "files": [
    "lib",
    "src",
    "icons.json"
  ],
  "sideEffects": [
    "**/*.css"
  ],
  "dependencies": {
    "change-case": "^4.1.2",
    "classnames": "^2.3.1",
    "tslib": "~2.6.2"
  },
  "peerDependencies": {
    "@types/react": "18",
    "react": "18",
    "react-dom": "18"
  },
  "peerDependenciesMeta": {
    "@types/react": {
      "optional": true
    }
  },
  "devDependencies": {
    "@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",
    "@blueprintjs/test-commons": "^4.0.4",
    "@blueprintjs/stylelint-plugin": "^5.2.1",
    "@blueprintjs/node-build-scripts": "^9.3.2"
  },
  "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",
  "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: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"
  }
}