mirror of
https://gitee.com/antv/g6.git
synced 2024-12-04 04:38:55 +08:00
58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "@antv/g6-extension-3d",
|
|
"version": "0.1.1",
|
|
"description": "",
|
|
"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"
|
|
],
|
|
"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.4",
|
|
"@antv/g-plugin-3d": "^2.0.6",
|
|
"@antv/g-plugin-device-renderer": "^2.0.6",
|
|
"@antv/g-plugin-dragndrop": "^2.0.4",
|
|
"@antv/g-webgl": "^2.0.6",
|
|
"@antv/layout": "^1.2.14-beta.3",
|
|
"@antv/util": "^3.3.7"
|
|
},
|
|
"devDependencies": {
|
|
"@antv/g": "^6.0.5",
|
|
"@antv/g-canvas": "^2.0.4",
|
|
"@antv/g6": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"@antv/g": "^6.0.5",
|
|
"@antv/g-canvas": "^2.0.4",
|
|
"@antv/g6": "^5.0.0-beta.30"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
}
|
|
}
|