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

88 lines
2.5 KiB
JSON

{
"name": "@braks/vue-flow",
"version": "0.4.0-12",
"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",
"dev": "vite",
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly && tsc -p tsconfig.build.json && yarn theme",
"postbuild": "shx rm -rf tmp && yarn docs",
"prepublishOnly": "yarn build",
"test": "cypress run-ct",
"test:open": "cypress open-ct",
"lint:js": "eslint --ext \".js,.jsx,.ts,.tsx\" --fix --ignore-path .gitignore .",
"lint": "yarn lint:js",
"docs": "typedoc --tsconfig ./tsconfig.docs.json dist/index.d.ts",
"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": {
"@antfu/eslint-config": "^0.9.0",
"@cypress/vite-dev-server": "^2.2.1",
"@cypress/vue": "^3.0.5",
"@rollup/plugin-replace": "^2.4.2",
"@types/dagre": "^0.7.46",
"@vitejs/plugin-vue": "^2.2.0",
"@vue/compiler-sfc": "3.2.22",
"autoprefixer": "^10.3.7",
"cypress": "8.5.0",
"dagre": "^0.8.5",
"esbuild": "0.13.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-prettier": "^3.4.1",
"np": "^7.5.0",
"postcss": "^8.4.8",
"postcss-cli": "^9.1.0",
"postcss-nested": "^5.0.6",
"prettier": "^2.4.1",
"shx": "^0.3.4",
"ts-patch": "^2.0.1",
"typedoc": "^0.22.13",
"typescript": "^4.5.5",
"typescript-transform-paths": "^3.3.1",
"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-router": "^4.0.12",
"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"
}
}