-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@orbifold/vue-yfiles",
"author": {
"email": "info@orbifold.net",
"name": "Orbifold Consulting (Francois Vanderseypen)",
"url": "https://orbifold.net"
},
"description": "A Vue/Nuxt v3 yFiles component.",
"homepage": "https://qwiery.com",
"repository": {
"type": "git",
"url": "https://github.com/Qwiery/qwiery-vue-cytoscape.git"
},
"bugs": {
"url": "https://github.com/Qwiery/qwiery-vue-cytoscape/issues",
"email": "info@orbifold.net"
},
"engines": {
"node": ">=21"
},
"private": false,
"version": "1.0.4",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"test": "vitest run",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@orbifold/utils": "latest",
"lodash": "^4.17.21",
"vue": "^3.3.11"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.5.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.6.4",
"vite-plugin-node-polyfills": "^0.17.0",
"vitest": "^1.1.0"
},
"peerDependencies": {
"yfiles": "~/yfiles-26.0.3.tgz"
}
}