{
  "name": "@preliquify/compiler",
  "private": false,
  "license": "MIT",
  "author": "Preliquify",
  "description": "Compiler for transforming React/Preact components to Shopify Liquid templates",
  "homepage": "https://github.com/MichaelNusair/preliquify#readme",
  "keywords": [
    "preliquify",
    "compiler",
    "shopify",
    "liquid",
    "jsx",
    "tsx",
    "transpiler"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/MichaelNusair/preliquify",
    "directory": "packages/compiler"
  },
  "bugs": {
    "url": "https://github.com/MichaelNusair/preliquify/issues"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "version": "2.0.3",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "esbuild": "^0.24.0",
    "fast-glob": "^3.3.2",
    "chokidar": "^3.5.3",
    "preact": "^10.27.2",
    "preact-render-to-string": "^6.5.11",
    "@preliquify/core": "^2.0.3",
    "tailwindcss": "^3.4.1",
    "postcss": "^8.4.35",
    "autoprefixer": "^10.4.17"
  },
  "peerDependencies": {
    "@preliquify/preact": "^2.0.3"
  },
  "devDependencies": {
    "@types/jsdom": "^21.1.6"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json"
  }
}