-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·51 lines (51 loc) · 1.28 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": "vue3-org-chart",
"version": "0.2.5",
"description": "Vue3 Org Chart is a tree diagram that visualizes the structure of an organization and the relationships and relatives. It is a Vue 3 component.",
"type": "module",
"files": [
"dist"
],
"main": "./dist/vue3-org-chart.cjs",
"module": "./dist/vue3-org-chart.js",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force"
},
"homepage": "https://github.com/n1crack/vue3-org-chart#readme",
"keywords": [
"vue",
"org chart",
"tree",
"hierarchy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/n1crack/vue3-org-chart.git"
},
"author": {
"name": "Yusuf Özdemir",
"mail": "yusuf@ozdemir.be"
},
"license": "MIT",
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/node": "^18.7.1",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.8",
"npm-run-all2": "^6.2.0",
"postcss": "^8.4.16",
"sass": "^1.75.0",
"typescript": "~5.4.0",
"vite": "^5.0.12",
"vue-tsc": "^2.0.21"
},
"dependencies": {
"panzoom": "^9.4.3",
"vue": "^3.2.0"
}
}