{
  "name": "@antv/g6-extension-3d",
  "version": "0.1.23",
  "description": "3D extension for G6",
  "keywords": [
    "antv",
    "g6",
    "extension",
    "3d"
  ],
  "license": "MIT",
  "author": "Aarebecca",
  "main": "lib/index.js",
  "module": "esm/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "src",
    "esm",
    "lib",
    "dist",
    "README"
  ],
  "dependencies": {
    "@antv/g-device-api": "^1.6.13",
    "@antv/g-plugin-3d": "^2.0.45",
    "@antv/g-plugin-device-renderer": "^2.2.22",
    "@antv/g-plugin-dragndrop": "^2.0.35",
    "@antv/g-webgl": "^2.0.47",
    "@antv/layout": "1.2.14-beta.8",
    "@antv/util": "^3.3.10"
  },
  "devDependencies": {
    "@antv/g": "^6.1.24",
    "@antv/g-canvas": "^2.0.43",
    "@antv/g6": "^5.1.0"
  },
  "peerDependencies": {
    "@antv/g": "^6.1.2",
    "@antv/g-canvas": "^2.0.18",
    "@antv/g6": "^5.1.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "run-p build:*",
    "build:cjs": "rimraf ./lib && tsc --module commonjs --outDir lib -p tsconfig.build.json",
    "build:esm": "rimraf ./esm && tsc --module ESNext --outDir esm -p tsconfig.build.json",
    "build:umd": "rimraf ./dist && rollup -c",
    "ci": "run-s lint type-check build test",
    "dev": "vite",
    "lint": "eslint ./src __tests__ --quiet && prettier ./src __tests__ --check",
    "test": "jest",
    "type-check": "tsc --noEmit -p tsconfig.test.json"
  }
}