-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.65 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
{
"name": "@kestra-io/ui-libs",
"version": "0.0.83",
"type": "module",
"files": [
"dist",
"src",
"stub-mdc-imports.js"
],
"main": "./dist/kestra-ui.umd.cjs",
"module": "./dist/kestra-ui.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/kestra-ui.js"
},
"require": "./dist/kestra-ui.umd.cjs"
},
"./style.css": "./dist/kestra-ui.css",
"./src/*": "./src/*"
},
"scripts": {
"dev": "vite",
"debug": "vite --debug",
"preview": "vite preview",
"build": "vite build",
"build:types": "vue-tsc --project ./tsconfig.build.json",
"lint": "eslint --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"@vue-flow/background": "^1.3.0",
"@vue-flow/controls": "^1.1.1",
"@vue-flow/core": "^1.41.1",
"bootstrap": "^5.3.3",
"dagre": "^0.8.5",
"humanize-duration": "^3.31.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"moment-timezone": "^0.5.46",
"vue": "^3.5.5",
"vue-material-design-icons": "^5.3.0",
"vuex": "^4.1.0",
"yaml": "^2.5.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.17.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-themes": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/vue3": "^8.4.7",
"@storybook/vue3-vite": "^8.4.7",
"@types/bootstrap": "^5.2.10",
"@types/dagre": "^0.7.52",
"@types/humanize-duration": "^3.27.4",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.14",
"@types/moment-timezone": "^0.5.30",
"@typescript-eslint/parser": "^8.19.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"eslint": "^9.17.0",
"eslint-plugin-storybook": "^0.11.2",
"eslint-plugin-vue": "^9.32.0",
"sass": "^1.83.1",
"storybook": "^8.4.7",
"typescript-eslint": "^8.19.1",
"vite": "^6.0.7",
"vue-tsc": "^2.2.0"
},
"dependencies": {
"@nuxtjs/mdc": "^0.12.1",
"@popperjs/core": "^2.11.8",
"mermaid": "^11.4.1",
"shiki": "^1.26.1",
"vue-i18n": "^11.0.1"
},
"optionalDependencies": {
"@esbuild/darwin-arm64": "^0.24.2",
"@esbuild/darwin-x64": "^0.24.2",
"@esbuild/linux-x64": "^0.24.2",
"@rollup/rollup-darwin-arm64": "^4.30.1",
"@rollup/rollup-darwin-x64": "^4.30.1",
"@rollup/rollup-linux-x64-gnu": "^4.30.1",
"@swc/core-darwin-arm64": "^1.10.6",
"@swc/core-darwin-x64": "^1.10.6",
"@swc/core-linux-x64-gnu": "^1.10.6"
}
}