{
  "name": "d3tooltip",
  "version": "3.0.0",
  "description": "A highly configurable tooltip for d3",
  "keywords": [
    "d3",
    "tooltip"
  ],
  "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/d3tooltip",
  "bugs": {
    "url": "https://github.com/reduxjs/redux-devtools/issues"
  },
  "license": "MIT",
  "author": "romseguy",
  "files": [
    "lib",
    "src"
  ],
  "main": "lib/cjs/index.js",
  "module": "lib/esm/index.js",
  "types": "lib/types/index.d.ts",
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/reduxjs/redux-devtools.git"
  },
  "scripts": {
    "build": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types",
    "build:cjs": "babel src --extensions \".ts\" --out-dir lib/cjs",
    "build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts\" --out-dir lib/esm",
    "build:types": "tsc --emitDeclarationOnly",
    "clean": "rimraf lib",
    "lint": "eslint . --ext .ts",
    "type-check": "tsc --noEmit",
    "prepack": "pnpm run clean && pnpm run build",
    "prepublish": "pnpm run type-check && pnpm run lint"
  },
  "dependencies": {
    "@babel/runtime": "^7.21.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.21.0",
    "@babel/core": "^7.21.4",
    "@babel/eslint-parser": "^7.21.3",
    "@babel/preset-env": "^7.21.4",
    "@babel/preset-typescript": "^7.21.4",
    "@types/d3": "^7.4.0",
    "@typescript-eslint/eslint-plugin": "^5.58.0",
    "@typescript-eslint/parser": "^5.58.0",
    "d3": "^7.8.4",
    "eslint": "^8.38.0",
    "eslint-config-prettier": "^8.8.0",
    "rimraf": "^5.0.0",
    "typescript": "~4.9.5"
  },
  "peerDependencies": {
    "@types/d3": "^7.4.0",
    "d3": "^7.8.4"
  }
}