{
  "name": "@thinkbuff/figma-theme",
  "author": "Eleven <eteplus@outlook.com>",
  "license": "MIT",
  "type": "module",
  "version": "0.0.8",
  "description": "Figma theme",
  "homepage": "https://github.com/thinkbuff/figma/tree/main/packages/react#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/thinkbuff/figma",
    "directory": "packages/theme"
  },
  "bugs": {
    "url": "https://github.com/thinkbuff/figma/issues"
  },
  "keywords": [
    "figma",
    "figma-theme",
    "unocss",
    "unocss-preset",
    "unocss-preset-figma-theme"
  ],
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs"
    },
    "./colors": {
      "types": "./dist/colors/index.d.ts",
      "import": "./dist/colors/index.mjs"
    },
    "./unocss": {
      "types": "./dist/unocss/index.d.ts",
      "import": "./dist/unocss/index.mjs"
    },
    "./css/*": "./dist/css/*",
    "./*": "./*"
  },
  "typesVersions": {
    "*": {
      "*": [
        "./dist/*",
        "./*"
      ]
    }
  },
  "files": [
    "*.css",
    "dist"
  ],
  "devDependencies": {
    "unbuild": "^3.0.1",
    "unocss": "^0.65.2"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": "eslint --fix"
  },
  "scripts": {
    "clean": "rm -rf node_modules && rm -rf dist",
    "build": "unbuild --minify && pnpm generate:css",
    "stub": "unbuild --stub && pnpm generate:css",
    "generate:css": "tsx scripts/generate-css-files.ts",
    "lint": "eslint .",
    "typecheck": "tsc --noEmit",
    "release": "changelogen --bump --no-output"
  }
}