{
  "name": "cytoscape-overlays",
  "description": "A cytoscape.js plugin for rendering bar, histogram, and boxplot node overlays",
  "version": "2.1.0",
  "publishConfig": {
    "access": "public"
  },
  "author": {
    "name": "Samuel Gratzl",
    "email": "sam@sgratzl.com",
    "url": "https://www.sgratzl.com"
  },
  "license": "MIT",
  "homepage": "https://github.com/sgratzl/cytoscape.js-overlays",
  "bugs": {
    "url": "https://github.com/sgratzl/cytoscape.js-overlays/issues"
  },
  "keywords": [
    "cytoscape"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/sgratzl/cytoscape.js-overlays.git"
  },
  "global": "CytoscapeOverlays",
  "dependencies": {
    "@sgratzl/boxplots": "^2.0.0",
    "@types/d3-shape": "^3.1.7",
    "@types/seedrandom": "^3.0.8",
    "d3-array": "^3.2.4",
    "d3-shape": "^3.2.0",
    "seedrandom": "^3.0.5"
  },
  "peerDependencies": {
    "cytoscape": "^3.23.0",
    "cytoscape-layers": "^3.0.0"
  },
  "browserslist": [
    "Firefox ESR",
    "last 2 Chrome versions",
    "last 2 Firefox versions"
  ],
  "type": "module",
  "main": "build/index.js",
  "module": "build/index.js",
  "require": "build/index.cjs",
  "umd": "build/index.umd.js",
  "unpkg": "build/index.umd.min.js",
  "jsdelivr": "build/index.umd.min.js",
  "types": "build/index.d.ts",
  "exports": {
    ".": {
      "import": "./build/index.js",
      "require": "./build/index.cjs",
      "scripts": "./build/index.umd.min.js",
      "types": "./build/index.d.ts"
    }
  },
  "sideEffects": false,
  "files": [
    "build",
    "src/**/*.ts"
  ],
  "devDependencies": {
    "@babel/core": "^7.28.4",
    "@babel/preset-env": "^7.28.3",
    "@eslint/js": "^9.37.0",
    "@rollup/plugin-babel": "^6.0.4",
    "@rollup/plugin-commonjs": "^28.0.6",
    "@rollup/plugin-node-resolve": "^16.0.2",
    "@rollup/plugin-replace": "^6.0.2",
    "@rollup/plugin-typescript": "^12.1.4",
    "@types/d3-array": "^3.2.2",
    "@typescript-eslint/eslint-plugin": "^8.45.0",
    "@typescript-eslint/parser": "^8.45.0",
    "@vitest/coverage-v8": "^3.2.4",
    "@yarnpkg/sdks": "^3.2.3",
    "cytoscape": "^3.33.1",
    "cytoscape-layers": "^3.0.0",
    "eslint": "^9.37.0",
    "eslint-plugin-prettier": "^5.5.4",
    "jsdom": "^27.0.0",
    "prettier": "^3.6.2",
    "rimraf": "^6.0.1",
    "rollup": "^4.52.4",
    "rollup-plugin-dts": "^6.2.3",
    "rollup-plugin-terser": "^7.0.2",
    "tslib": "^2.8.1",
    "typedoc": "^0.28.13",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.45.0",
    "vite": "^7.1.9",
    "vitest": "^3.2.4"
  },
  "scripts": {
    "clean": "rimraf --glob build node_modules \"*.tgz\" \"*.tsbuildinfo\"",
    "compile": "tsc -b tsconfig.c.json",
    "start": "yarn run watch",
    "watch": "rollup -c -w",
    "samples": "tsc -p samples/tsconfig.json",
    "samples:watch": "tsc -p samples/tsconfig.json -w",
    "build": "rollup -c",
    "test": "vitest --passWithNoTests",
    "test:watch": "yarn run test --watch",
    "test:coverage": "yarn run test --coverage",
    "lint": "yarn run eslint && yarn run prettier",
    "fix": "yarn run eslint:fix && yarn run prettier:write",
    "prettier:write": "prettier \"*\" \"*/**\" --write",
    "prettier": "prettier \"*\" \"*/**\" --check",
    "eslint": "eslint src --cache",
    "eslint:fix": "yarn run eslint --fix",
    "docs": "typedoc --options typedoc.json",
    "prepare": "yarn run build"
  },
  "packageManager": "yarn@4.10.3"
}