{
  "name": "@graphysdk/react",
  "author": "Graphy",
  "description": "Graphy charting SDK for React",
  "homepage": "https://docs.graphy.dev/sdk-next/quickstart",
  "license": "SEE LICENSE IN LICENSE.md",
  "keywords": [
    "graphy",
    "chart",
    "react",
    "visualization",
    "grammar-of-graphics"
  ],
  "version": "1.9.0-beta.1789747103525",
  "type": "module",
  "sideEffects": false,
  "types": "./dist/index.d.ts",
  "jsdelivr": "./dist/index.browser.mjs",
  "files": [
    "dist",
    "LICENSE.md",
    "licenses",
    "README.md"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./editable": {
      "types": "./dist/editable.d.ts",
      "import": "./dist/editable.mjs",
      "require": "./dist/editable.cjs"
    }
  },
  "dependencies": {
    "@graphysdk/react-renderer": "1.9.0-beta.1789747103525",
    "@graphysdk/viz-engine": "1.9.0-beta.1789747103525"
  },
  "peerDependencies": {
    "@tiptap/core": "^3.0.0",
    "@tiptap/extension-bold": "^3.0.0",
    "@tiptap/extension-document": "^3.0.0",
    "@tiptap/extension-hard-break": "^3.0.0",
    "@tiptap/extension-heading": "^3.0.0",
    "@tiptap/extension-italic": "^3.0.0",
    "@tiptap/extension-link": "^3.0.0",
    "@tiptap/extension-paragraph": "^3.0.0",
    "@tiptap/extension-text": "^3.0.0",
    "@tiptap/extension-text-align": "^3.0.0",
    "@tiptap/extension-text-style": "^3.0.0",
    "@tiptap/extension-underline": "^3.0.0",
    "@tiptap/extensions": "^3.0.0",
    "@tiptap/pm": "^3.0.0",
    "@tiptap/react": "^3.0.0",
    "react": "^19.0.0"
  },
  "peerDependenciesMeta": {
    "@tiptap/core": {
      "optional": true
    },
    "@tiptap/extension-bold": {
      "optional": true
    },
    "@tiptap/extension-document": {
      "optional": true
    },
    "@tiptap/extension-hard-break": {
      "optional": true
    },
    "@tiptap/extension-heading": {
      "optional": true
    },
    "@tiptap/extension-italic": {
      "optional": true
    },
    "@tiptap/extension-link": {
      "optional": true
    },
    "@tiptap/extension-paragraph": {
      "optional": true
    },
    "@tiptap/extension-text": {
      "optional": true
    },
    "@tiptap/extension-text-align": {
      "optional": true
    },
    "@tiptap/extension-text-style": {
      "optional": true
    },
    "@tiptap/extension-underline": {
      "optional": true
    },
    "@tiptap/extensions": {
      "optional": true
    },
    "@tiptap/pm": {
      "optional": true
    },
    "@tiptap/react": {
      "optional": true
    }
  },
  "devDependencies": {
    "@rollup/plugin-replace": "^6.0.3",
    "@testing-library/react": "^16.3.1",
    "@tiptap/core": "^3.31.1",
    "@tiptap/extension-bold": "^3.31.1",
    "@tiptap/extension-document": "^3.31.1",
    "@tiptap/extension-hard-break": "^3.31.1",
    "@tiptap/extension-heading": "^3.31.1",
    "@tiptap/extension-italic": "^3.31.1",
    "@tiptap/extension-link": "^3.31.1",
    "@tiptap/extension-paragraph": "^3.31.1",
    "@tiptap/extension-text": "^3.31.1",
    "@tiptap/extension-text-align": "^3.31.1",
    "@tiptap/extension-text-style": "^3.31.1",
    "@tiptap/extension-underline": "^3.31.1",
    "@tiptap/extensions": "^3.31.1",
    "@tiptap/pm": "^3.31.1",
    "@tiptap/react": "^3.31.1",
    "@types/react": "^19.2.14",
    "@types/react-dom": "^19.2.3",
    "@vanilla-extract/vite-plugin": "^5.2.2",
    "react": "^19.2.4",
    "react-dom": "^19.2.4",
    "rolldown": "^1.1.5",
    "rollup-plugin-node-externals": "^8.1.1",
    "tslib": "^2.8.1",
    "vite": "^8.1.5",
    "vite-plugin-css-injected-by-js": "^3.5.2",
    "vite-plugin-dts": "^4.5.4",
    "vitest": "^4.1.11",
    "@graphytools/eslint-config": "0.0.1",
    "@graphytools/eslint-plugin-graphy": "1.0.0",
    "@graphytools/typescript-config": "0.0.1",
    "@graphytools/vitest-config": "1.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "lint-staged": {
    "*.{ts,tsx,js,jsx,json,css,md}": [
      "prettier --write"
    ],
    "*.{ts,tsx}": [
      "eslint --max-warnings=0 --fix"
    ]
  },
  "scripts": {
    "build": "vite build && pnpm build:browser",
    "build:browser": "vite build --config vite.browser.config.ts --mode index && vite build --config vite.browser.config.ts --mode editable",
    "test": "vitest run",
    "test:watch": "TZ=utc vitest",
    "lint": "eslint . --max-warnings 0",
    "lint:fix": "eslint . --fix",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "typecheck": "tsc --noEmit"
  }
}