{
  "name": "@antv/gpt-vis",
  "version": "0.6.0",
  "description": "Components for GPTs, generative AI, and LLM projects. Not only UI Components.",
  "keywords": [
    "antv",
    "GPTs",
    "LLM",
    "vis",
    "LUI"
  ],
  "homepage": "https://gpt-vis.antv.vision",
  "repository": {
    "type": "git",
    "url": "https://github.com/antvis/GPT-Vis"
  },
  "license": "MIT",
  "author": "antvis",
  "sideEffects": false,
  "type": "module",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/esm/index.d.ts",
  "jsdelivr": "dist/umd/index.min.js",
  "unpkg": "dist/umd/index.min.js",
  "browser": {
    "./src/export-map.ts": "./src/export-map.browser.ts",
    "./dist/esm/export-map.js": "./dist/esm/export-map.browser.js"
  },
  "files": [
    "dist",
    "README.md",
    "!dist/umd/report.html"
  ],
  "dependencies": {
    "@ant-design/graphs": "^2.1.1",
    "@ant-design/icons": "^5.6.1",
    "@ant-design/plots": "^2.6.5",
    "@antv/event-emitter": "^0.1.3",
    "@antv/g": "6.1.27",
    "@antv/g2": "^5.4.1",
    "@antv/g6": "^5.0.49",
    "@antv/l7": "^2.23.0",
    "@antv/larkmap": "^1.5.1",
    "@antv/s2": "^2.0.0",
    "@playwright/test": "^1.56.0",
    "@zumer/snapdom": "^1.9.14",
    "copy-text-to-clipboard": "^3.2.2",
    "lodash": "^4.17.21",
    "rc-resize-observer": "^1.4.3",
    "react-error-boundary": "6.0.3",
    "react-markdown": "^9.1.0",
    "react-syntax-highlighter": "^15.6.6",
    "rehype-raw": "^7.0.0",
    "remark-gfm": "^4.0.1",
    "styled-components": "^6.1.19"
  },
  "devDependencies": {
    "@ant-design/x": "^1.6.1",
    "@changesets/changelog-github": "^0.5.1",
    "@changesets/cli": "^2.29.7",
    "@commitlint/cli": "^19.8.1",
    "@commitlint/config-conventional": "^19.8.1",
    "@eslint/js": "^9.37.0",
    "@playwright/test": "^1.56.0",
    "@types/jest": "^29.5.14",
    "@types/lodash": "^4.17.20",
    "@types/react": "^18.3.26",
    "@types/react-dom": "^18.3.1",
    "@types/react-syntax-highlighter": "^15.5.13",
    "@types/webpack-bundle-analyzer": "^4.7.0",
    "antd": "^5.27.5",
    "dumi": "^2.4.21",
    "eslint": "^9.37.0",
    "eslint-config-prettier": "^9.1.2",
    "eslint-plugin-jest": "^28.14.0",
    "eslint-plugin-jsx-a11y": "^6.10.2",
    "eslint-plugin-react": "^7.37.5",
    "eslint-plugin-react-hooks": "^5.2.0",
    "father": "^4.6.7",
    "gh-pages": "^6.3.0",
    "globals": "^15.15.0",
    "husky": "^9.1.7",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "limit-size": "^0.1.4",
    "lint-staged": "^15.5.2",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.6.2",
    "prettier-plugin-organize-imports": "^4.3.0",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "ts-jest": "^29.4.5",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.46.1",
    "webpack-bundle-analyzer": "^4.10.2"
  },
  "peerDependencies": {
    "antd": "^5.24.6",
    "react": ">=16.9.0",
    "react-dom": ">=16.9.0"
  },
  "engines": {
    "node": ">=18",
    "pnpm": ">=8"
  },
  "lint-staged": {
    "*.{md,json}": [
      "prettier --cache --write --no-error-on-unmatched-pattern"
    ],
    "*.{css,less}": [
      "prettier --cache --write"
    ],
    "*.{js,jsx}": [
      "eslint --fix",
      "prettier --cache --write"
    ],
    "*.{ts,tsx}": [
      "eslint --fix",
      "prettier --cache --write"
    ]
  },
  "limit-size": [
    {
      "path": "dist/umd/index.min.js",
      "limit": "5 Mb"
    }
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "scripts": {
    "start": "pnpm dev",
    "dev": "dumi dev",
    "build": "father build",
    "docs:build": "dumi build",
    "docs:build-analyze": "ANALYZE=1 dumi build",
    "docs:deploy": "gh-pages -d docs-dist",
    "deploy": "pnpm docs:build && pnpm docs:deploy",
    "check-deps": "father doctor",
    "check-format": "prettier './**/*.{ts,tsx,js,jsx,json,md,css,less}' --check",
    "format": "prettier './**/*.{ts,tsx,js,jsx,json,md,css,less}' --write",
    "lint:ts": "eslint src/**",
    "lint:ts-fix": "pnpm lint:ts --fix",
    "test:unit": "jest --config ./jest.config.ts",
    "test": "pnpm build && npx playwright test",
    "test:size": "pnpm build && limit-size",
    "changeset": "changeset add",
    "publish-version": "changeset version && node scripts/sync-version",
    "publish-package": "pnpm build && changeset publish"
  }
}