-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.81 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "hy-vue-gantt",
"version": "2.1.0",
"description": "Evolution of vue-ganttastic package",
"author": "Eugenio Topa (@Xeyos88)",
"scripts": {
"serve": "vite",
"build": "npm run build:types && npm run build:lib",
"build:lib": "vite build",
"build:types": "vue-tsc --declaration --emitDeclarationOnly --outDir lib_types -p tsconfig.build.json",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint .",
"lint:fix": "npm run lint --fix",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch"
},
"type": "module",
"exports": {
".": {
"types": "./lib_types/hy-vue-gantt.d.ts",
"import": "./lib/hy-vue-gantt.js",
"require": "./lib/hy-vue-gantt.umd.cjs"
}
},
"main": "./lib/hy-vue-gantt.umd.cjs",
"types": "./lib_types/hy-vue-gantt.d.ts",
"files": [
"lib_types",
"lib/hy-vue-gantt.js",
"lib/hy-vue-gantt.umd.cjs"
],
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@rushstack/eslint-patch": "^1.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@senojs/rollup-plugin-style-inject": "^0.2.3",
"@types/node": "^22.10.1",
"@types/postcss-preset-env": "^7.7.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^2.1.8",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"@vuepress/plugin-search": "2.0.0-beta.51",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.16.0",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^25.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.17",
"postcss-preset-env": "^10.1.1",
"prettier": "^3.4.1",
"rollup-plugin-visualizer": "^5.14.0",
"semantic-release": "^24.2.0",
"terser": "^5.37.0",
"typescript": "~5.4.3",
"vite": "^6.0.2",
"vitepress": "^1.5.0",
"vitest": "^2.1.8",
"vue-tsc": "^2.1.10"
},
"peerDependencies": {
"@fortawesome/free-brands-svg-icons": "^6.7.1",
"@fortawesome/free-regular-svg-icons": "^6.7.1",
"@fortawesome/free-solid-svg-icons": "^6.7.1",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@vueuse/core": "^12.0.0",
"date-holidays": "^3.23.14",
"dayjs": "^1.11.13",
"vue": "^3.5.13"
},
"homepage": "https://xeyos88.github.io/HyVueGantt/",
"keywords": [
"gantt",
"chart",
"bar",
"diagram",
"vue",
"vuejs",
"ganttastic"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Xeyos88/HyVueGantt"
},
"dependencies": {
"@tsconfig/node22": "^22.0.0"
}
}