{
  "name": "easy-pie-chart",
  "description": "Lightweight plugin to render simple, animated and retina optimized pie charts",
  "keywords": [
    "pie chart",
    "chart",
    "circular progress",
    "percent",
    "progress bar"
  ],
  "license": "MIT",
  "version": "3.2.0",
  "author": {
    "name": "Robert Fleischmann",
    "email": "rendro87@gmail.com",
    "url": "https://robert-fleischmann.com"
  },
  "contributors": [
    {
      "name": "Moritz",
      "url": "https://github.com/mrzmyr"
    }
  ],
  "type": "module",
  "main": "./dist/easypiechart.cjs",
  "module": "./dist/easypiechart.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/easypiechart.mjs"
      },
      "require": {
        "types": "./types/cjs.d.cts",
        "default": "./dist/easypiechart.cjs"
      }
    },
    "./package.json": "./package.json",
    "./jquery": {
      "import": {
        "types": "./dist/jquery.d.ts",
        "default": "./dist/jquery.easypiechart.mjs"
      },
      "require": {
        "types": "./types/jquery.d.cts",
        "default": "./dist/jquery.easypiechart.cjs"
      }
    },
    "./dist/easypiechart.js": "./dist/easypiechart.cjs",
    "./dist/jquery.easypiechart.js": "./dist/jquery.easypiechart.cjs",
    "./dist/easypiechart.min.js": "./dist/easypiechart.min.cjs",
    "./dist/jquery.easypiechart.min.js": "./dist/jquery.easypiechart.min.cjs",
    "./dist/*": "./dist/*"
  },
  "files": [
    "dist",
    "src",
    "types"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rendro/easy-pie-chart.git"
  },
  "scripts": {
    "build": "vite build && vite build --mode umd && vite build --mode umd-min && vite build --mode jquery && vite build --mode jquery-umd && vite build --mode jquery-umd-min && node scripts/alias-dist.mjs && tsc",
    "typecheck": "tsc -p tsconfig.check.json",
    "test": "vitest run",
    "verify:package": "./scripts/verify-package.sh",
    "test:watch": "vitest"
  },
  "devDependencies": {
    "jsdom": "^25.0.1",
    "typescript": "^5.6.3",
    "vite": "^7.3.6",
    "vitest": "^3.2.7"
  },
  "typesVersions": {
    "*": {
      "jquery": [
        "./dist/jquery.d.ts"
      ]
    }
  }
}
