{
  "name": "@jcamp/tailwindcss-plugin-icons",
  "version": "0.6.2",
  "packageManager": "^pnpm@8.1.0",
  "description": "Automatic icon creator for Tailwind",
  "author": "John Campion (https://github.com/JohnCampionJr/)",
  "license": "MIT",
  "homepage": "https://github.com/jcamp-code/tailwindcss-plugin-icons",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jcamp-code/tailwindcss-plugin-icons.git"
  },
  "bugs": {
    "url": "https://github.com/jcamp-code/tailwindcss-plugin-icons/issues"
  },
  "keywords": [
    "tailwindcss",
    "iconify",
    "icons"
  ],
  "main": "dist/index.js",
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "jest": {
    "setupFilesAfterEnv": [
      "<rootDir>/jest/custom-matchers.js"
    ],
    "transform": {
      "^.+\\.(t|j)sx?$": "@swc/jest"
    },
    "moduleNameMapper": {
      "^~/(.*)": "<rootDir>/$1"
    }
  },
  "peerDependencies": {
    "tailwindcss": ">=3.3.2"
  },
  "dependencies": {
    "@iconify/utils": "^2.1.7"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.6.6",
    "@commitlint/config-conventional": "^17.6.6",
    "@iconify-json/carbon": "^1.1.18",
    "@iconify/types": "^2.0.0",
    "@jcamp/eslint-config": "0.7.1",
    "@swc/cli": "^0.1.62",
    "@swc/core": "^1.3.68",
    "@swc/jest": "^0.2.26",
    "@types/jest": "^29.5.2",
    "@types/node": "^18.16.19",
    "c8": "^8.0.0",
    "changelogen": "^0.5.4",
    "eslint": "8.44.0",
    "jest": "^29.6.0",
    "lint-staged": "^13.2.3",
    "postcss": "^8.4.24",
    "prettier": "2.8.8",
    "simple-git-hooks": "^2.8.1",
    "tailwindcss": "^3.3.2",
    "typescript": "^5.1.6"
  },
  "c8": {
    "exclude": [
      "jest/*.js",
      "**/*.test.ts"
    ]
  },
  "scripts": {
    "test": "pnpm swcify && c8 jest",
    "swcify": "swc ./src --out-dir ./dist",
    "build": "pnpm swcify",
    "postbuild": "tsc --emitDeclarationOnly",
    "dev": "pnpm swcify -- --watch",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --check --write .",
    "release": "changelogen --release --push",
    "release:major": "changelogen --release --major --push",
    "pub": "pnpm build && pnpm postbuild && pnpm publish --access public"
  }
}