-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
81 lines (81 loc) · 2.22 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "v-network-graph",
"description": "An interactive network graph visualization component for Vue 3",
"version": "0.9.18",
"main": "./umd/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"type": "module",
"license": "MIT",
"homepage": "https://dash14.github.io/v-network-graph/",
"repository": {
"type": "git",
"url": "https://github.com/dash14/v-network-graph.git"
},
"files": [
"lib",
"umd"
],
"scripts": {
"lint": "eslint -c eslint.config.js **/*.vue **/*.ts **/*.spec.ts --fix",
"format": "prettier --write **/*.vue **/*.ts **/*.spec.ts",
"build": "run-s clean build:tc build:lib",
"build:tc": "vue-tsc --noEmit",
"build:lib": "run-p build:lib:*",
"build:lib:es": "vite build",
"build:lib:main": "vite --config vite-umd-main.config.ts build",
"build:lib:force": "vite --config vite-umd-force.config.ts build",
"clean": "rimraf lib umd",
"test": "vitest"
},
"dependencies": {
"@dash14/svg-pan-zoom": "^3.6.9",
"lodash-es": "^4.17.21",
"mitt": "^3.0.1"
},
"devDependencies": {
"@types/d3-force": "^3.0.10",
"@types/eslint__js": "^8.42.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.16.6",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/compiler-sfc": "^3.5.12",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.29.1",
"globals": "^15.11.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.80.4",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.3",
"vue-tsc": "^2.1.8"
},
"peerDependencies": {
"d3-force": "^3.0.0",
"vue": "^3.5.8"
},
"peerDependenciesMeta": {
"d3-force": {
"optional": true
}
},
"exports": {
".": {
"import": "./lib/index.js",
"require": "./umd/index.js"
},
"./lib/force-layout": {
"import": "./lib/force-layout.js",
"require": "./umd/force-layout.js"
},
"./lib/*": "./lib/*"
}
}