{
  "name": "tailwind-typescript-plugin",
  "version": "1.3.0",
  "description": "TypeScript Language Service plugin that validates Tailwind CSS class names in JSX/TSX files. Catches typos and invalid classes in real-time with support for tailwind-variants and class-variance-authority.",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib/**/*",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsc",
    "watch": "tsc --watch",
    "test": "jest",
    "lint": "eslint src --ext .ts,.tsx,.json --quiet --cache",
    "tsc": "tsc --noEmit",
    "prepare": "npm run build",
    "benchmark": "npm run build && node --expose-gc $(which npx) ts-node performance/run-benchmark.ts"
  },
  "keywords": [
    "typescript",
    "typescript-plugin",
    "language-service",
    "tailwind",
    "tailwindcss",
    "tailwind-css",
    "validation",
    "linter",
    "class-names",
    "className",
    "jsx",
    "tsx",
    "react",
    "tailwind-variants",
    "class-variance-authority",
    "cva",
    "css-in-js",
    "developer-tools",
    "ide",
    "vscode"
  ],
  "author": {
    "name": "Ivan Rodriguez Calleja",
    "url": "https://github.com/IvanRodriCalleja"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/IvanRodriCalleja/tailwind-typescript-plugin.git"
  },
  "bugs": {
    "url": "https://github.com/IvanRodriCalleja/tailwind-typescript-plugin/issues"
  },
  "homepage": "https://github.com/IvanRodriCalleja/tailwind-typescript-plugin#readme",
  "devDependencies": {
    "@eslint/compat": "^1.2.9",
    "@eslint/eslintrc": "^3",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@trivago/prettier-plugin-sort-imports": "^5.2.2",
    "@types/jest": "^29.5.0",
    "@types/node": "^24.10.1",
    "conventional-changelog-conventionalcommits": "^9.1.0",
    "eslint": "^9",
    "eslint-config-next": "15.3.3",
    "eslint-config-prettier": "^10.1.5",
    "eslint-plugin-json": "^4.0.1",
    "eslint-plugin-prettier": "^5.4.1",
    "eslint-plugin-react-compiler": "^19.1.0-rc.2",
    "eslint-plugin-react-hooks": "^5.2.0",
    "eslint-plugin-storybook": "^9.0.16",
    "jest": "^29.7.0",
    "prettier": "^3.5.3",
    "semantic-release": "^24.2.9",
    "ts-jest": "^29.4.5",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.2"
  },
  "peerDependencies": {
    "typescript": ">=4.0.0"
  },
  "dependencies": {
    "tailwindcss": "^4.1.17"
  }
}
