{
  "name": "@sahithyan/satori",
  "version": "0.4.7",
  "description": "Enlightened library to convert HTML and CSS to SVG.",
  "module": "./dist/index.js",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      "wasm": [
        "./dist/index.d.ts"
      ]
    }
  },
  "type": "module",
  "license": "MPL-2.0",
  "files": [
    "dist/**",
    "wasm.js"
  ],
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./wasm": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.wasm.js",
      "require": "./dist/index.wasm.cjs"
    }
  },
  "lint-staged": {
    "*.{ts,tsx}": [
      "eslint --fix --cache",
      "prettier --write --cache"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vercel/satori.git"
  },
  "keywords": [
    "HTML",
    "JSX",
    "SVG",
    "converter",
    "renderer"
  ],
  "author": "Shu Ding <g@shud.in>",
  "bugs": {
    "url": "https://github.com/vercel/satori/issues"
  },
  "homepage": "https://github.com/vercel/satori#readme",
  "devDependencies": {
    "@resvg/resvg-js": "^2.1.0",
    "@types/node": "^16",
    "@types/opentype.js": "^1.3.3",
    "@types/react": "^17.0.38",
    "@typescript-eslint/eslint-plugin": "^5.40.0",
    "@typescript-eslint/parser": "^5.40.0",
    "@vitest/ui": "^0.7.6",
    "concurrently": "^7.3.0",
    "esbuild-plugin-replace": "^1.2.0",
    "eslint": "^8.25.0",
    "eslint-plugin-react": "^7.31.10",
    "eslint-plugin-react-hooks": "^4.6.0",
    "husky": "8.0.3",
    "jest-image-snapshot": "^5.2.0",
    "lint-staged": "13.1.0",
    "prettier": "^2.7.1",
    "react": "^17.0.2",
    "tsup": "^5.12.9",
    "turbo": "^1.6.3",
    "twrnc": "^3.4.0",
    "typescript": "^4.8.3",
    "vitest": "0.28.4"
  },
  "dependencies": {
    "@shuding/opentype.js": "1.4.0-beta.0",
    "css-background-parser": "^0.1.0",
    "css-box-shadow": "1.0.0-3",
    "css-to-react-native": "^3.0.0",
    "emoji-regex": "^10.2.1",
    "linebreak": "^1.1.0",
    "postcss-value-parser": "^4.2.0",
    "yoga-wasm-web": "^0.3.3"
  },
  "packageManager": "pnpm@7.11.0",
  "engines": {
    "node": ">=16"
  },
  "scripts": {
    "dev": "concurrently \"pnpm dev:default\" \"pnpm dev:wasm\"",
    "dev:default": "NODE_ENV=development tsup src/index.ts --watch --ignore-watch playground",
    "dev:wasm": "WASM=1 NODE_ENV=development tsup src/index.ts --watch --ignore-watch playground",
    "dev:playground": "turbo dev --filter=satori-playground...",
    "build": "NODE_ENV=production pnpm run build:default && pnpm run build:wasm",
    "build:default": "tsup",
    "build:wasm": "WASM=1 tsup",
    "test": "NODE_ENV=test vitest run --outputTruncateLength=999999999999",
    "test-type": "tsc -p tsconfig.json --noEmit && tsc -p playground/tsconfig.json --noEmit",
    "dev:test": "NODE_ENV=test vitest --update --outputTruncateLength=999999999999",
    "lint": "eslint . --ext .js,.jsx,.ts,.tsx --quiet --cache",
    "lint:fix": "pnpm lint --fix",
    "prettier-check": "prettier --check .",
    "prettier-fix": "prettier --write . --cache",
    "ci-check": "concurrently \"pnpm prettier-check\" \"pnpm test-type\" \"pnpm lint\""
  }
}