{
  "name": "tailwind-resolver",
  "version": "0.3.8",
  "description": "Resolve Tailwind theme variables into JavaScript objects. Supports Tailwind v4 with future-proof versioning.",
  "keywords": [
    "tailwind",
    "tailwindcss",
    "tailwind-v4",
    "tailwind-v5",
    "theme",
    "css-variables",
    "postcss",
    "parser",
    "resolver",
    "chart",
    "canvas",
    "typescript",
    "theme-resolution"
  ],
  "author": "0xstern <mrsirstern@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/0xstern/tailwind-resolver.git"
  },
  "bugs": {
    "url": "https://github.com/0xstern/tailwind-resolver/issues"
  },
  "homepage": "https://github.com/0xstern/tailwind-resolver#readme",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "bin": {
    "tailwind-resolver": "./dist/v4/cli.cjs"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./v4": {
      "types": "./dist/v4/index.d.ts",
      "import": "./dist/v4/index.mjs",
      "require": "./dist/v4/index.js"
    },
    "./v4/vite": {
      "types": "./dist/v4/vite-plugin.d.ts",
      "import": "./dist/v4/vite-plugin.mjs",
      "require": "./dist/v4/vite-plugin.js"
    },
    "./vite": {
      "types": "./dist/v4/vite-plugin.d.ts",
      "import": "./dist/v4/vite-plugin.mjs",
      "require": "./dist/v4/vite-plugin.js"
    },
    "./v4/shared/spacing-helper": {
      "types": "./dist/v4/shared/spacing_helper.d.ts",
      "import": "./dist/v4/shared/spacing_helper.mjs",
      "require": "./dist/v4/shared/spacing_helper.js"
    },
    "./v4/shared/spacing_helper": {
      "types": "./dist/v4/shared/spacing_helper.d.ts",
      "import": "./dist/v4/shared/spacing_helper.mjs",
      "require": "./dist/v4/shared/spacing_helper.js"
    }
  },
  "files": [
    "dist/**/*.js",
    "dist/**/*.mjs",
    "dist/**/*.d.ts",
    "dist/**/*.cjs",
    "!dist/**/*.map",
    "README.md",
    "LICENSE.md",
    "src/v4/cli/README.md",
    "src/v4/vite/README.md"
  ],
  "type": "module",
  "sideEffects": false,
  "devDependencies": {
    "@eslint/js": "^9.36.0",
    "@ianvs/prettier-plugin-sort-imports": "^4.5.1",
    "@types/bun": "latest",
    "@types/node": "^24.8.0",
    "eslint": "^9.0.0",
    "eslint-config-prettier": "^10.1.5",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-jsdoc": "^61.1.4",
    "eslint-plugin-n": "^17.23.1",
    "globals": "^16.4.0",
    "mitata": "^1.0.34",
    "prettier": "^3.0.0",
    "typescript": "^5.0.0",
    "typescript-eslint": "^8.45.0",
    "vite": "^7.1.10"
  },
  "peerDependencies": {
    "typescript": "^5",
    "vite": ">=5.0.0"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    },
    "vite": {
      "optional": true
    }
  },
  "scripts": {
    "build": "bun run build.ts",
    "test": "bun test",
    "test:unit": "bun test test/v4",
    "test:integration": "bun test test/v4/integration",
    "test:e2e": "bun test test/v4/e2e",
    "test:watch": "bun test --watch",
    "test:coverage": "bun test --coverage",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "bun format && bun lint && bun typecheck && bun test && bun run build"
  },
  "engines": {
    "node": ">=21.0.0"
  },
  "dependencies": {
    "postcss": "^8.5.6",
    "postcss-import": "^16.1.1",
    "postcss-value-parser": "^4.2.0"
  }
}
