forked from zunnzunn/vue-ganttastic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.58 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
{
"name": "@infectoone/vue-ganttastic",
"version": "2.0.5",
"description": "A simple and customizable Gantt chart component for Vue.js",
"author": "Marko Zunic (@infectoone)",
"scripts": {
"serve": "vue-cli-service serve",
"build": "rollup -c",
"lint": "vue-cli-service lint",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs"
},
"main": "dist/library.js",
"module": "dist/library.mjs",
"files": [
"dist/*"
],
"dependencies": {
"dayjs": "^1.10.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-typescript": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-typescript": "^9.1.0",
"@vuepress/plugin-search": "^2.0.0-beta.32",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.0.3",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"rollup": "^2.62.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-vue": "^6.0.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"vue": "^3.2.26",
"vuepress": "^2.0.0-beta.32"
},
"peerDependencies": {
"vue": "^3.2.26"
},
"homepage": "https://infectoone.github.io/vue-ganttastic/",
"keywords": [
"gantt",
"chart",
"bar",
"diagram",
"vue",
"vuejs",
"ganttastic"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/InfectoOne/vue-ganttastic"
}
}