{
  "name": "@sxo/engine",
  "version": "0.1.1",
  "description": "High-performance dynamic style engine for SXO Design System.",
  "keywords": [
    "sxo",
    "design-system",
    "ui",
    "components",
    "style-engine",
    "css-in-js"
  ],
  "license": "MIT",
  "author": "sxo team",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@sxo/design": "0.1.1"
  },
  "devDependencies": {
    "tsup": "^8.3.6",
    "typescript": "^5.9.3",
    "vitest": "^3.2.4"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/doki-land/sxo-engine.git",
    "directory": "packages/sxo-engine"
  },
  "bugs": {
    "url": "https://github.com/doki-land/sxo-engine/issues"
  },
  "homepage": "https://github.com/doki-land/sxo-engine/tree/main/packages/sxo-engine#readme",
  "scripts": {
    "build": "tsup src/index.ts --format cjs --format esm --dts --clean --sourcemap",
    "dev": "tsup src/index.ts --format cjs --format esm --dts --clean --sourcemap --watch",
    "test": "vitest run"
  }
}