{
  "name": "@elastic/eui-illustrations",
  "version": "1.1.0",
  "description": "Theme-adaptable SVG illustrations for Elastic UI",
  "license": "SEE LICENSE IN LICENSE.txt",
  "repository": {
    "type": "git",
    "url": "https://github.com/elastic/eui.git",
    "directory": "packages/illustrations"
  },
  "homepage": "https://github.com/elastic/eui/blob/main/packages/illustrations",
  "main": "lib/cjs/index.js",
  "module": "lib/esm/index.js",
  "types": "lib/cjs/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/cjs/index.d.ts",
      "import": "./lib/esm/index.js",
      "require": "./lib/cjs/index.js",
      "default": "./lib/cjs/index.js"
    }
  },
  "scripts": {
    "build": "yarn build:clean && yarn generate && yarn build:compile && yarn build:compile:esm && yarn build:types",
    "build-pack": "yarn build && npm pack",
    "build:clean": "rimraf dist/ lib/",
    "build:compile": "NODE_ENV=production babel src --out-dir=lib/cjs --extensions .ts --ignore \"**/*.test.ts\"",
    "build:compile:esm": "tsc --project ./tsconfig.esm.json",
    "build:types": "NODE_ENV=production tsc --project tsconfig.types.json",
    "generate": "node scripts/generate.js",
    "lint": "yarn generate && tsc --noEmit",
    "test": "yarn lint && yarn test-unit",
    "test-unit": "yarn generate && jest ./src --passWithNoTests"
  },
  "devDependencies": {
    "@babel/cli": "^7.26.4",
    "@babel/core": "^7.26.9",
    "@babel/preset-env": "^7.26.9",
    "@babel/preset-typescript": "^7.26.0",
    "@types/jest": "^29.5.12",
    "jest": "^29.7.0",
    "rimraf": "^6.0.1",
    "svgo": "^3.0.2",
    "typescript": "^5.7.3"
  },
  "files": [
    "lib",
    "!**/*.tsbuildinfo",
    "!**/*.test.js",
    "!**/*.test.d.ts",
    "!**/*.test.js.map",
    "README.md",
    "licenses"
  ],
  "installConfig": {
    "hoistingLimits": "workspaces"
  }
}