g6/packages/g6-extension-3d/package.json

59 lines
1.5 KiB
JSON

{
"name": "@antv/g6-extension-3d",
"version": "0.1.5",
"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"
],
"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",
"prepublishOnly": "npm run ci",
"test": "jest",
"type-check": "tsc --noEmit -p tsconfig.test.json"
},
"dependencies": {
"@antv/g-device-api": "^1.6.12",
"@antv/g-plugin-3d": "^2.0.14",
"@antv/g-plugin-device-renderer": "^2.0.14",
"@antv/g-plugin-dragndrop": "^2.0.9",
"@antv/g-webgl": "^2.0.16",
"@antv/layout": "^1.2.14-beta.7",
"@antv/util": "^3.3.8"
},
"devDependencies": {
"@antv/g": "^6.0.13",
"@antv/g-canvas": "^2.0.12",
"@antv/g6": "workspace:*"
},
"peerDependencies": {
"@antv/g": "^6.0.13",
"@antv/g-canvas": "^2.0.4",
"@antv/g6": "^5.0.21"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}