{
  "name": "@antv/gi-sdk",
  "version": "3.0.0",
  "description": "SDK for Graph Insight Application",
  "repository": {
    "type": "git",
    "url": "https://github.com/antvis/Graphin.git"
  },
  "license": "ISC",
  "main": "lib/index.js",
  "module": "es/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "src",
    "es",
    "lib"
  ],
  "dependencies": {
    "@antv/event-emitter": "^0.1.3",
    "@antv/g6": "^5.0.28",
    "@antv/util": "^3.3.10",
    "@tanstack/react-query": "^5.59.20",
    "antd": "^5.21.6",
    "classnames": "^2.5.1",
    "@antv/graphin": "^3.0.4"
  },
  "devDependencies": {
    "less": "^4.2.0",
    "npm-run-all": "^4.1.5",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "rimraf": "^5.0.10"
  },
  "peerDependencies": {
    "less": "^4.2.0",
    "react": ">=16.9.0",
    "react-dom": ">=16.9.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "run-s clean lib",
    "ci": "run-s type-check lint build",
    "clean": "rimraf lib es",
    "dev": "vite",
    "lib": "run-p lib:*",
    "lib:cjs": "tsc -p tsconfig.build.json --target ES5 --module commonjs --outDir lib",
    "lib:es": "tsc -p tsconfig.build.json --target ES5 --module ESNext --outDir es",
    "lint": "eslint ./src --quiet && prettier ./src --check",
    "type-check": "tsc --noEmit",
    "watch": "pnpm lib:es --w"
  }
}