{
  "name": "@wellcometrust/wellcome-icons",
  "version": "1.2.0",
  "description": "Icons for Wellcome digital products",
  "type": "module",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "engines": {
    "node": ">=22.16.0",
    "npm": ">=9.6.7"
  },
  "files": [
    "package.json",
    "dist"
  ],
  "browserslist": [
    "defaults"
  ],
  "scripts": {
    "build:clean": "rm -rf dist",
    "build:types": "tsc --emitDeclarationOnly",
    "build": "npm run build:clean && npm run build:types && rollup -c ./config/rollup.config.js --environment NODE_ENV:production",
    "build:demo": "vite build --config vite.config.ts",
    "dev": "npm run build:types && rollup -c ./config/rollup.config.js -w",
    "dev:demo": "vite --config vite.config.ts",
    "lint": "npm run lint:js",
    "lint:js": "eslint --fix ./src --ext .js,.jsx,.ts,.tsx && echo 'JS linting complete'",
    "prepublishOnly": "npm run type-check && npm run lint && npm run build",
    "preview:demo": "npm run build:demo && vite preview --config vite.config.ts",
    "type-check": "tsc --noEmit",
    "type-check:watch": "npm run type-check -- --watch"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wellcometrust/wellcome-icons.git"
  },
  "keywords": [],
  "license": "MIT",
  "homepage": "https://github.com/wellcometrust/wellcome-icons#readme",
  "peerDependencies": {
    "react": "^17.0.2  || ^18.2.0 || ^19.1.0",
    "react-dom": "^17.0.2 || ^18.2.0 || ^19.1.0"
  },
  "dependencies": {
    "@babel/runtime": "^7.28.3",
    "@babel/runtime-corejs3": "^7.28.3"
  },
  "devDependencies": {
    "@babel/cli": "^7.7.7",
    "@babel/core": "^7.7.7",
    "@babel/eslint-parser": "^7.14.4",
    "@babel/plugin-transform-optional-chaining": "^7.27.1",
    "@babel/plugin-transform-runtime": "^7.8.3",
    "@babel/preset-env": "^7.7.7",
    "@babel/preset-react": "^7.7.4",
    "@babel/preset-typescript": "^7.7.7",
    "@rollup/plugin-babel": "^5.3.0",
    "@rollup/plugin-commonjs": "^19.0.0",
    "@rollup/plugin-json": "^4.1.0",
    "@rollup/plugin-node-resolve": "^13.0.0",
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-url": "^6.0.0",
    "@rollup/plugin-virtual": "^2.0.3",
    "@types/node": "^22",
    "@types/react": "^19.1.0",
    "@types/react-dom": "^19.1.0",
    "@typescript-eslint/eslint-plugin": "^8.40.0",
    "@typescript-eslint/parser": "^8.40.0",
    "eslint": "^9.33.0",
    "eslint-config-prettier": "^9.1.2",
    "eslint-plugin-import": "^2.24.2",
    "eslint-plugin-jsx-a11y": "^6.4.1",
    "eslint-plugin-prettier": "^5.5.4",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-react": "^7.24.0",
    "eslint-plugin-react-hooks": "^5.2.0",
    "glob": "^11.0.3",
    "husky": "^3.1.0",
    "lint-staged": "^9.5.0",
    "prettier": "^3.6.2",
    "react": "^19.1.0",
    "react-dom": "^19.1.0",
    "rollup": "^2.28.2",
    "rollup-plugin-copy": "^3.4.0",
    "rollup-plugin-ignore-import": "^1.3.2",
    "typescript": "^4.9.5",
    "vite": "^5.0.0",
    "@vitejs/plugin-react": "^4.2.0"
  },
  "lint-staged": {
    "src/**/*.{js,jsx,ts,tsx}": [
      "npm run lint:js",
      "git add"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run type-check && lint-staged"
    }
  }
}
