{
  "name": "@antv/x6-react-shape",
  "version": "3.0.1",
  "description": "X6 shape for rendering react components.",
  "main": "lib/index.js",
  "module": "es/index.js",
  "unpkg": "dist/index.js",
  "jsdelivr": "dist/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "dist",
    "es",
    "lib",
    "src"
  ],
  "keywords": [
    "shape",
    "react",
    "render",
    "x6",
    "antv"
  ],
  "peerDependencies": {
    "@antv/x6": "^3.x",
    "react": ">=18.0.0",
    "react-dom": ">= 18.0.0"
  },
  "devDependencies": {
    "@antv/x6": "^3.x",
    "@types/react": "^18.0.25",
    "@types/react-dom": "^18.0.9",
    "react": "^18.0.0",
    "react-dom": "^18.0.0",
    "vite": "^7.1.2",
    "@vitejs/plugin-react": "^5.0.2"
  },
  "author": {
    "name": "bubkoo",
    "email": "bubkoo.wy@gmail.com"
  },
  "license": "MIT",
  "homepage": "https://x6.antv.antgroup.com/tutorial/intermediate/react",
  "bugs": {
    "url": "https://github.com/antvis/x6/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/antvis/x6.git",
    "directory": "packages/x6-react-shape"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "scripts": {
    "start": "vite",
    "build": "run-s clean build:esm build:cjs build:umd",
    "clean": "rimraf dist es lib",
    "build:esm": "tsc --module esnext --target es6 --outDir ./es",
    "build:cjs": "tsc --module commonjs --target es6 --outDir ./lib",
    "build:umd": "pnpm run --if-present && rollup -c rollup.config.js"
  }
}