{
  "name": "@webstudio-is/css-engine",
  "version": "0.299.0",
  "description": "CSS Renderer for Webstudio",
  "author": "Webstudio <github@webstudio.is>",
  "homepage": "https://webstudio.is",
  "type": "module",
  "dependencies": {
    "@emotion/hash": "^0.9.2",
    "colorjs.io": "^0.6.1",
    "zod": "^4.4.3",
    "@webstudio-is/fonts": "0.299.0"
  },
  "devDependencies": {
    "@types/react": "^18.2.70",
    "@types/react-dom": "^18.2.25",
    "react": "18.3.0-canary-14898b6a9-20240318",
    "react-dom": "18.3.0-canary-14898b6a9-20240318",
    "vitest": "^3.1.2",
    "@webstudio-is/tsconfig": "1.0.7",
    "@webstudio-is/design-system": "0.0.0"
  },
  "exports": {
    ".": {
      "webstudio": "./src/index.ts",
      "types": "./lib/types/index.d.ts",
      "import": "./lib/index.js"
    },
    "./runtime": {
      "webstudio": "./src/runtime.ts",
      "types": "./lib/types/runtime.d.ts",
      "import": "./lib/runtime.js"
    }
  },
  "files": [
    "lib/*",
    "!*.{test,stories}.*"
  ],
  "license": "AGPL-3.0-or-later",
  "private": false,
  "sideEffects": false,
  "scripts": {
    "typecheck": "tsc --noEmit",
    "build": "rm -rf lib && esbuild src/index.ts --outdir=lib --bundle --format=esm --packages=external && esbuild src/runtime.ts --outdir=lib --bundle --format=esm --packages=external",
    "dts": "tsc --project tsconfig.dts.json",
    "test": "vitest run"
  }
}