{
  "name": "@koobiq/react-icons",
  "version": "0.34.1",
  "description": "A collection of icons",
  "license": "MIT",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./manifest.json": "./manifest.json"
  },
  "type": "module",
  "keywords": [],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "directory": "packages/icons",
    "url": "git+https://github.com/koobiq/react-components.git"
  },
  "devDependencies": {
    "@koobiq/icons": "^11.5.0"
  },
  "files": [
    "dist",
    "manifest.json"
  ],
  "peerDependencies": {
    "react": "18.x || 19.x"
  },
  "sideEffects": false,
  "scripts": {
    "clean": "rimraf dist && rimraf node_modules && rimraf .turbo",
    "clean:temp": "rimraf temp && rimraf src",
    "lint:js": "eslint --ext .ts,.tsx src --fix",
    "lint": "pnpm lint:js",
    "type-check": "tsc --noEmit --pretty",
    "build": "vite build && tsc -p tsconfig.build.json && rm -rf dist/node_modules",
    "export-icons": "pnpm update @koobiq/icons && tsx scripts/build.ts && pnpm lint"
  }
}