{
  "name": "venn-helper",
  "version": "2.3.6",
  "description": "Area Proportional Venn and Euler Diagrams",
  "author": "Ben Frederickson <ben@benfrederickson.com> (http:/www.benfrederickson.com)",
  "url": "https://github.com/benfred/venn.js/issues",
  "type": "module",
  "exports": {
    "./packake.json": "./package.json",
    ".": {
      "import": "./dist/index.js",
      "default": "./dist/index.cjs"
    }
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.17.4",
    "@changesets/cli": "^2.28.1",
    "@vitest/coverage-v8": "^3.0.7",
    "d3-selection": "^3.0.0",
    "d3-transition": "^3.0.1",
    "jshint": "^2.8.0",
    "rollup": "^0.59.4",
    "rollup-plugin-commonjs": "^9.1.3",
    "rollup-plugin-node-resolve": "^3.3.0",
    "tape": "4",
    "tsup": "^8.4.0",
    "typescript": "^5.8.2",
    "uglify-js": "3",
    "vitest": "^3.0.7"
  },
  "main": "dist/index.js",
  "types": "index.t.ts",
  "jsnext:main": "index",
  "files": [
    "dist"
  ],
  "directories": {
    "example": "examples",
    "test": "tests"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/benfred/venn.js.git"
  },
  "keywords": [
    "Venn",
    "Euler"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/benfred/venn.js/issues"
  },
  "homepage": "https://github.com/benfred/venn.js",
  "jshintConfig": {
    "esnext": true
  },
  "scripts": {
    "build": "NODE_ENV=production tsup",
    "build:dev": "NODE_ENV=development tsup",
    "test": "vitest",
    "lint": "tsc",
    "local-release": "changeset version && changeset publish",
    "ci": "npm run build && npm run lint && npm run check-exports",
    "pretest": "rm -rf build && rollup -c && cp build/venn.js .",
    "test:2": "jshint src/*.js && tape 'tests/**/*test.js'",
    "prepublish": "npm run test && uglifyjs build/venn.js -c -m -o build/venn.min.js",
    "check-exports": "attw --pack .",
    "postpublish": "zip -j build/venn.zip -- LICENSE README.md build/venn.js build/venn.min.js"
  },
  "dependencies": {
    "fmin": "0.0.2"
  }
}
