Files
vue-flow/package/package.json
2022-04-11 11:30:10 +02:00

70 lines
2.0 KiB
JSON

{
"name": "@braks/vue-flow",
"version": "0.4.2-0",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/bcakmakoglu/vue-flow"
},
"license": "MIT",
"author": "Burak Cakmakoglu<brainbraks@googlemail.com>",
"homepage": "https://github.com/bcakmakoglu/vue-flow#readme",
"bugs": {
"url": "https://github.com/bcakmakoglu/vue-flow/issues"
},
"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"
],
"sideEffects": false,
"scripts": {
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly && tsc -p tsconfig.build.json && yarn theme",
"postbuild": "shx rm -rf tmp && yarn lint",
"pretest": "yarn build",
"test": "yarn --cwd .. test",
"lint": "eslint --ext \".ts,.tsx\" -c .eslintrc.js --fix ./dist",
"theme": "postcss src/style.css -o dist/style.css && postcss src/theme-default.css -o dist/theme-default.css",
"prepare": "ts-patch install -s",
"prepublishOnly": "shx cp ../README.md .",
"postpublish": "shx rm README.md"
},
"dependencies": {
"@braks/revue-draggable": "^0.4.2",
"@types/d3": "^7.1.0",
"@vueuse/core": "^8.2.5",
"d3": "^7.4.2",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.4.2",
"@vitejs/plugin-vue": "^2.3.1",
"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.6.9",
"vite": "2.5.x",
"vite-plugin-vue-type-imports": "^0.1.3",
"vite-svg-loader": "^2.2.0",
"vue-tsc": "^0.33.9"
},
"peerDependencies": {
"vue": "^3.2.21"
},
"publishConfig": {
"access": "public",
"registry": "http://registry.npmjs.org/"
},
"np": {
"branch": "master",
"yarn": true,
"message": "v%s"
}
}