{
  "name": "path2d-polyfill",
  "version": "2.1.1",
  "description": "Polyfills Path2D api for canvas rendering",
  "keywords": [
    "Path2D",
    "polyfill",
    "canvas",
    "roundRect"
  ],
  "homepage": "https://github.com/nilzona/path2d-polyfill#readme",
  "bugs": {
    "url": "https://github.com/nilzona/path2d-polyfill/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nilzona/path2d-polyfill.git"
  },
  "license": "MIT",
  "author": "nilzona",
  "type": "module",
  "exports": {
    "browser": "./dist/path2d-polyfill.min.js"
  },
  "browser": "dist/path2d-polyfill.min.js",
  "files": [
    "dist"
  ],
  "browserslist": [
    ">0.1%",
    "ie >= 11",
    "last 2 versions",
    "not dead"
  ],
  "prettier": "@qlik/prettier-config",
  "dependencies": {
    "path2d": "0.1.1"
  },
  "devDependencies": {
    "@babel/core": "7.24.0",
    "@babel/preset-env": "7.24.0",
    "@qlik/eslint-config": "0.7.13",
    "@qlik/prettier-config": "0.4.11",
    "@qlik/tsconfig": "0.2.4",
    "@rollup/plugin-babel": "6.0.4",
    "@vitest/coverage-v8": "1.4.0",
    "eslint": "8.57.0",
    "jsdom": "24.0.0",
    "prettier": "3.2.5",
    "typescript": "5.4.2",
    "vite": "5.1.6",
    "vitest": "1.4.0"
  },
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "vite build && cp dist/path2d-polyfill.min.js test/path2d-polyfill.min.js",
    "check-types": "tsc --noEmit",
    "dev": "vite",
    "format:check": "prettier --check '**' --ignore-unknown",
    "format:write": "prettier --write '**' --ignore-unknown",
    "lint": "eslint .",
    "preview": "vite preview",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest"
  }
}