-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.29 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
{
"name": "@jyoketsu/vue-gantt",
"author": "xujie",
"version": "0.0.4",
"type": "module",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./lib_types/vue-gantt.d.ts",
"import": "./lib/vue-gantt.js",
"require": "./lib/vue-gantt.umd.cjs"
}
},
"main": "./lib/vue-gantt.umd.cjs",
"types": "./lib_types/vue-gantt.d.ts",
"files": [
"lib_types",
"lib/style.css",
"lib/vue-gantt.js",
"lib/vue-gantt.umd.cjs"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@types/node": "^22.5.5",
"@vitejs/plugin-vue": "^5.1.2",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.12",
"typescript": "^5.5.3",
"vite": "^5.4.1",
"vitepress": "^1.4.0",
"vue-tsc": "^2.0.29"
},
"peerDependencies": {
"dayjs": "^1.11.5",
"tailwindcss": "^3.0.0",
"vue": "^3.2.40"
},
"dependencies": {
"@jyoketsu/vue-gantt": "file:",
"dayjs": "^1.11.5",
"vue": "^3.2.40",
"vue-gantt": "file:"
},
"keywords": [
"vue3",
"gantt",
"甘特图",
"vue"
]
}