Files
vue-flow/package/package.json
T
2022-04-04 21:42:48 +02:00

66 lines
1.8 KiB
JSON

{
"name": "@braks/vue-flow",
"version": "0.4.0-18",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/bcakmakoglu/vue-flow"
},
"license": "MIT",
"author": "Burak Cakmakoglu<brainbraks@googlemail.com>",
"homepage": "https://vueflow.dev/",
"main": "./dist/vue-flow.cjs.js",
"types": "./dist/index.d.ts",
"module": "./dist/vue-flow.es.js",
"unpkg": "./dist/vue-flow.iife.js",
"jsdelivr": "./dist/vue-flow.iife.js",
"files": [
"dist"
],
"scripts": {
"prepare": "ts-patch install -s",
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly && tsc -p tsconfig.build.json && yarn theme",
"postbuild": "shx rm -rf tmp",
"prepublishOnly": "yarn build",
"test": "yarn --cwd .. test",
"lint": "eslint --ext \".js,.jsx,.ts,.tsx\" --fix --ignore-path .gitignore .",
"theme": "postcss src/theme-default.css -o dist/theme-default.css"
},
"dependencies": {
"@braks/revue-draggable": "^0.4.2",
"@types/d3": "^7.1.0",
"@vueuse/core": "^7.5.5",
"d3": "^7.1.1",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.4.2",
"@vitejs/plugin-vue": "^2.2.0",
"@vue/compiler-sfc": "3.2.22",
"autoprefixer": "^10.3.7",
"np": "^7.5.0",
"postcss": "^8.4.8",
"postcss-cli": "^9.1.0",
"postcss-nested": "^5.0.6",
"unplugin-auto-import": "^0.5.11",
"vite": "2.5.x",
"vite-plugin-vue-type-imports": "^0.1.3",
"vite-svg-loader": "^2.2.0",
"vue": "3.2.21",
"vue-tsc": "^0.29.5"
},
"peerDependencies": {
"vue": "^3.2.21"
},
"publishConfig": {
"access": "public",
"registry": "http://registry.npmjs.org/"
},
"np": {
"branch": "master",
"yarn": true,
"message": "v%s"
}
}