{
  "name": "@kbox-labs/react-echarts",
  "version": "1.1.0",
  "description": "ECharts for React",
  "productName": "React ECharts",
  "author": "Hugo Corta <corta.hugo@gmail.com>",
  "homepage": "https://hugocxl.github.io/react-echarts/",
  "license": "MIT",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "require": "dist/index.js",
  "types": "dist/index.d.ts",
  "private": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/hugocxl/react-echarts"
  },
  "bugs": {
    "url": "https://github.com/hugocxl/react-echarts/issues"
  },
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "peerDependencies": {
    "echarts": "^5",
    "react": "^18"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0",
    "@changesets/cli": "^2",
    "@types/echarts": "^4",
    "@types/react": "^18",
    "@typescript-eslint/eslint-plugin": "^6",
    "@typescript-eslint/parser": "^6",
    "prettier": "^3",
    "tsup": "^7",
    "typescript": "^5",
    "husky": "^8",
    "lint-staged": "^14",
    "eslint": "^8",
    "vitest": "^0"
  },
  "scripts": {
    "dev": "tsup --format=esm,cjs --no-dts --watch",
    "build": "tsup",
    "test": "vitest run",
    "test:dev": "vitest dev -u",
    "test:coverage": "vitest run --coverage",
    "clean": "rm -rf dist && rm -rf node_modules",
    "fix": "pnpm lint:fix . && pnpm format:fix .",
    "lint": "eslint --cache",
    "lint:check": "pnpm lint",
    "lint:fix": "pnpm lint --fix",
    "styles": "stylelint --cache",
    "styles:check": "pnpm styles",
    "styles:fix": "pnpm styles --fix",
    "format": "prettier --cache",
    "format:check": "pnpm format --check",
    "format:fix": "pnpm format --write",
    "types": "tsc",
    "types:check": "pnpm types --noEmit",
    "release": "changeset publish",
    "release-dev": "changeset version --snapshot dev && changeset publish --tag dev",
    "postversion": "git push && git push --tags"
  }
}