Files
vue-flow/packages/pathfinding-edge/package.json
2023-05-25 20:48:26 +02:00

79 lines
2.1 KiB
JSON

{
"name": "@vue-flow/pathfinding-edge",
"version": "1.0.6",
"private": false,
"license": "MIT",
"author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/bcakmakoglu/vue-flow"
},
"homepage": "https://github.com/bcakmakoglu/vue-flow#readme",
"bugs": {
"url": "https://github.com/bcakmakoglu/vue-flow/issues"
},
"keywords": [
"vue",
"flow",
"diagram",
"editor",
"graph",
"node",
"link",
"port",
"slot",
"vue3",
"composition-api",
"vue-flow",
"vueflow",
"typescript"
],
"main": "./dist/vue-flow-pathfinding-edge.js",
"types": "./dist/index.d.ts",
"module": "./dist/vue-flow-pathfinding-edge.mjs",
"unpkg": "./dist/vue-flow-pathfinding-edge.iife.js",
"jsdelivr": "./dist/vue-flow-pathfinding-edge.iife.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-flow-pathfinding-edge.mjs",
"require": "./dist/vue-flow-pathfinding-edge.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"dev": "pnpm types:watch & pnpm build:watch",
"build": "vite build",
"build:watch": "vite build --watch",
"types": "vue-tsc --declaration --emitDeclarationOnly && pnpm lint:dist",
"types:watch": "vue-tsc --declaration --emitDeclarationOnly --watch",
"examples": "vite",
"test": "exit 0",
"lint": "eslint --ext .js,.ts,.vue ./",
"lint:dist": "eslint --ext \".ts,.tsx\" -c .eslintrc.js --fix --ignore-pattern !**/* ./dist"
},
"peerDependencies": {
"@vue-flow/core": "^1.12.2"
},
"dependencies": {
"pathfinding": "^0.4.18",
"perfect-arrows": "^0.3.7"
},
"devDependencies": {
"@tooling/eslint-config": "workspace:*",
"@tooling/tsconfig": "workspace:*",
"@tooling/vite-config": "workspace:*",
"@types/pathfinding": "^0.0.6",
"@vue-flow/core": "workspace:*",
"vue": "^3.2.25",
"vue-tsc": "^1.6.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}