UNPKG

@antv/x6-vue-shape

Version:

X6 shape for rendering vue components.

67 lines 1.56 kB
{ "name": "@antv/x6-vue-shape", "version": "3.0.2", "description": "X6 shape for rendering vue components.", "main": "lib/index.js", "module": "es/index.js", "unpkg": "dist/index.js", "jsdelivr": "dist/index.js", "types": "lib/index.d.ts", "files": [ "dist", "es", "lib", "src" ], "keywords": [ "shape", "vue", "render", "x6", "antv" ], "dependencies": { "vue-demi": "latest" }, "peerDependencies": { "@antv/x6": "^3.x", "@vue/composition-api": "^1.0.0-rc.1", "vue": "^2.0.0 || >=3.0.0" }, "peerDependenciesMeta": { "@vue/composition-api": { "optional": true } }, "devDependencies": { "@antv/x6": "^3.x", "vue": "^3.0.0", "vite": "^7.1.2" }, "author": { "name": "bubkoo", "email": "bubkoo.wy@gmail.com" }, "license": "MIT", "homepage": "https://x6.antv.antgroup.com/tutorial/intermediate/vue", "bugs": { "url": "https://github.com/antvis/x6/issues" }, "repository": { "type": "git", "url": "https://github.com/antvis/x6.git", "directory": "packages/x6-vue-shape" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org" }, "scripts": { "start": "vite", "build": "run-s clean build:esm build:cjs build:umd", "clean": "rimraf dist es lib", "build:esm": "tsc --module esnext --target es6 --outDir ./es", "build:cjs": "tsc --module commonjs --target es6 --outDir ./lib", "build:umd": "pnpm run --if-present && rollup -c rollup.config.js" } }