Implemented 2D visualization for notes using Vue Flow
This commit is contained in:
95
node_modules/@vue-flow/core/package.json
generated
vendored
Normal file
95
node_modules/@vue-flow/core/package.json
generated
vendored
Normal file
@@ -0,0 +1,95 @@
|
||||
{
|
||||
"name": "@vue-flow/core",
|
||||
"version": "1.46.0",
|
||||
"private": false,
|
||||
"license": "MIT",
|
||||
"author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/bcakmakoglu/vue-flow",
|
||||
"directory": "packages/core"
|
||||
},
|
||||
"homepage": "https://vueflow.dev",
|
||||
"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-core.js",
|
||||
"module": "./dist/vue-flow-core.mjs",
|
||||
"types": "./dist/index.d.ts",
|
||||
"unpkg": "./dist/vue-flow-core.iife.js",
|
||||
"jsdelivr": "./dist/vue-flow-core.iife.js",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/vue-flow-core.mjs",
|
||||
"require": "./dist/vue-flow-core.js"
|
||||
},
|
||||
"./dist/style.css": "./dist/style.css",
|
||||
"./dist/theme-default.css": "./dist/theme-default.css"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"*.d.ts"
|
||||
],
|
||||
"sideEffects": [
|
||||
"*.css"
|
||||
],
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
"registry": "https://registry.npmjs.org/"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"vue": "^3.3.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@vueuse/core": "^10.5.0",
|
||||
"d3-drag": "^3.0.0",
|
||||
"d3-interpolate": "^3.0.1",
|
||||
"d3-selection": "^3.0.0",
|
||||
"d3-zoom": "^3.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-replace": "^5.0.3",
|
||||
"@types/d3-drag": "^3.0.7",
|
||||
"@types/d3-interpolate": "^3.0.4",
|
||||
"@types/d3-selection": "^3.0.11",
|
||||
"@types/d3-transition": "^3.0.9",
|
||||
"@types/d3-zoom": "^3.0.8",
|
||||
"@vitejs/plugin-vue": "^4.4.0",
|
||||
"autoprefixer": "^10.4.16",
|
||||
"postcss": "^8.4.31",
|
||||
"postcss-cli": "^10.1.0",
|
||||
"postcss-nested": "^6.0.1",
|
||||
"vite": "^4.4.11",
|
||||
"vue-tsc": "^1.8.16",
|
||||
"@tooling/eslint-config": "0.0.0",
|
||||
"@tooling/tsconfig": "0.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "pnpm types:watch & pnpm build:watch",
|
||||
"build": "vite build && vite build -c vite.config.iife.ts",
|
||||
"build:watch": "vite build --watch & vite build -c vite.config.iife.ts --watch",
|
||||
"types": "vue-tsc --declaration --emitDeclarationOnly && tsc -p ./tsconfig.build.json && shx rm -rf tmp && pnpm lint:dist",
|
||||
"types:watch": "vue-tsc --declaration --emitDeclarationOnly --watch & tsc -p ./tsconfig.build.json --watch",
|
||||
"theme": "postcss src/style.css -o dist/style.css && postcss src/theme-default.css -o dist/theme-default.css",
|
||||
"lint": "eslint --ext .js,.ts,.vue ./",
|
||||
"lint:dist": "eslint --ext \".ts,.tsx\" -c .eslintrc.js --fix --ignore-pattern !**/* ./dist",
|
||||
"test": "exit 0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user