{
  "name": "@character-foundry/exporter",
  "version": "0.1.4",
  "description": "Universal character card exporter - export to PNG, CharX, or Voxta formats",
  "type": "module",
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@character-foundry/charx": "^0.0.7",
    "@character-foundry/png": "^0.0.6",
    "@character-foundry/schemas": "^0.2.2",
    "@character-foundry/core": "^0.1.3",
    "@character-foundry/voxta": "^0.1.13"
  },
  "devDependencies": {
    "fflate": "^0.8.1",
    "tsup": "^8.5.1",
    "typescript": "^5.3.0",
    "vitest": "^1.0.0"
  },
  "keywords": [
    "character-card",
    "tavern",
    "chara",
    "png",
    "charx",
    "voxta",
    "exporter"
  ],
  "license": "MIT",
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "module": "./dist/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/character-foundry/character-foundry",
    "directory": "packages/exporter"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsc --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "clean": "rm -rf dist"
  }
}