{
  "name": "@unocss/runtime",
  "type": "module",
  "version": "0.61.9",
  "description": "CSS-in-JS Runtime for UnoCSS",
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/antfu",
  "homepage": "https://github.com/unocss/unocss/tree/main/packages/runtime#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/unocss/unocss",
    "directory": "packages/runtime"
  },
  "bugs": {
    "url": "https://github.com/unocss/unocss/issues"
  },
  "keywords": [
    "unocss",
    "css-in-js"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "unpkg": "./uno.global.js",
  "jsdelivr": "./uno.global.js",
  "types": "./dist/index.d.ts",
  "files": [
    "*.global.js",
    "dist"
  ],
  "dependencies": {
    "@unocss/core": "0.61.9",
    "@unocss/preset-attributify": "0.61.9",
    "@unocss/preset-uno": "0.61.9"
  },
  "scripts": {
    "build": "pnpm run build:node && pnpm run build:cdn && pnpm run build:presets",
    "build:cdn": "tsup src/cdn/*.ts --format iife --minify --out-dir .",
    "build:node": "tsup --config tsup.node-config.ts",
    "build:presets": "tsup src/presets/*.ts --format iife --minify --out-dir .",
    "watch": "tsup src/cdn/*.ts --format iife --watch src --out-dir .",
    "dev": "nr watch & live-server --open=/play"
  }
}