ep-lib-ts 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # Vue 3 + TypeScript + Vite
2
+
3
+ This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
4
+
5
+ ## Recommended IDE Setup
6
+
7
+ - [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
8
+
9
+ ## Type Support For `.vue` Imports in TS
10
+
11
+ TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
12
+
13
+ If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
14
+
15
+ 1. Disable the built-in TypeScript Extension
16
+ 1. Run `Extensions: Show Built-in Extensions` from VSCode's command palette
17
+ 2. Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
18
+ 2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
@@ -0,0 +1,4 @@
1
+ import _sfc_main from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/basics/EpChip.vue?vue&type=script&setup=true&lang.ts";
2
+ export * from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/basics/EpChip.vue?vue&type=script&setup=true&lang.ts";
3
+ export default _sfc_main;
4
+ //# sourceMappingURL=EpChip.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EpChip.vue.d.ts","sourceRoot":"","sources":["../../../src/components/basics/EpChip.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,8GAA8G,CAAC;AACrI,cAAc,8GAA8G,CAAC;AAC7H,eAAe,SAAS,CAAC"}
@@ -0,0 +1,4 @@
1
+ import _sfc_main from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/basics/EpIcon.vue?vue&type=script&setup=true&lang.ts";
2
+ export * from "/Users/santiagok/Documents/GitHub/ep-lib/src/components/basics/EpIcon.vue?vue&type=script&setup=true&lang.ts";
3
+ export default _sfc_main;
4
+ //# sourceMappingURL=EpIcon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EpIcon.vue.d.ts","sourceRoot":"","sources":["../../../src/components/basics/EpIcon.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,8GAA8G,CAAC;AACrI,cAAc,8GAA8G,CAAC;AAC7H,eAAe,SAAS,CAAC"}
@@ -0,0 +1 @@
1
+ export { default as EpChip } from './basics/EpChip.vue';
@@ -0,0 +1,7 @@
1
+ import type { App } from 'vue';
2
+ import { EpChip } from '../components';
3
+ declare const _default: {
4
+ install: (app: App) => void;
5
+ };
6
+ export default _default;
7
+ export { EpChip };
@@ -0,0 +1 @@
1
+ export declare function isHtml(content: string): boolean;
@@ -0,0 +1 @@
1
+ export default function useColors(prefix: string, color: string): string;
@@ -0,0 +1,23 @@
1
+ export declare const useIcons: {
2
+ base: {
3
+ icon: string;
4
+ };
5
+ warning: {
6
+ icon: string;
7
+ };
8
+ success: {
9
+ icon: string;
10
+ };
11
+ error: {
12
+ icon: string;
13
+ };
14
+ info: {
15
+ icon: string;
16
+ };
17
+ question: {
18
+ icon: string;
19
+ };
20
+ tip: {
21
+ icon: string;
22
+ };
23
+ };
@@ -0,0 +1 @@
1
+ export declare function useMarkdown(str: string): string;
@@ -0,0 +1 @@
1
+ export declare function useRenderText(text: string): string;
@@ -0,0 +1,6 @@
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),p=["width","height","viewBox"],f=["d"],c=e.defineComponent({__name:"EpIcon",props:{size:{default:32},viewBox:{default:"0 0 24 24"},iconPath:null,extraClass:null},setup(t){const r=t,{size:o,viewBox:a,iconPath:l,extraClass:d}=e.toRefs(r);return(s,u)=>(e.openBlock(),e.createElementBlock("svg",{width:e.unref(o),height:e.unref(o),viewBox:e.unref(a),color:"currentColor",fill:"currentColor",class:e.normalizeClass(`inline ${e.unref(d)}`)},[e.createElementVNode("path",{d:e.unref(l)},null,8,f)],10,p))}}),b={base:{default:"bg-white border-black border text-black",outlined:"bg-white border-black border text-black"},primary:{default:"bg-primary border-primary border",outlined:"border-primary border text-primary"},secondary:{default:"bg-secondary border-secondary border",outlined:"border-secondary border text-secondary"},accent:{default:"bg-accent border-accent border",outlined:"border-accent border text-accent"},info:{default:"bg-info border-info border",outlined:"border-info border text-info"},warning:{default:"bg-warning border-warning border",outlined:"border-warning border text-warning"},success:{default:"bg-success border-success border",outlined:"border-success border text-success"},error:{default:"bg-error border-error border",outlined:"border-error border text-error"}},m={small:"px-1 py-1 text-xs",medium:"py-2 px-3 text-sm",large:"px-3 py-3 text-lg"},i=e.defineComponent({__name:"EpChip",props:{type:{default:"base"},size:{default:"medium"},outlined:{type:Boolean},appendIcon:{default:null},prependIcon:{default:null},square:{type:Boolean,default:!1},dark:{type:Boolean,default:!1}},setup(t){const r=t,o=e.computed(()=>r.outlined?"outlined":"default"),a=e.computed(()=>r.square?"":"rounded-full"),l=e.computed(()=>r.outlined?"":r.dark?"text-white":"text-black"),d=e.computed(()=>{var n;return`
2
+ ${l.value}
3
+ ${m[r.size]}
4
+ ${a.value}
5
+ ${(n=b[r.type])==null?void 0:n[o.value]}
6
+ `}),s=e.computed(()=>{if(r.size==="large")return"30";if(r.size==="medium")return"20";if(r.size==="small")return"15"}),{appendIcon:u}=e.toRefs(r);return(n,h)=>(e.openBlock(),e.createElementBlock("span",{class:e.normalizeClass(`${e.unref(d)} mx-2 cursor-default`)},[t.prependIcon?(e.openBlock(),e.createBlock(c,{key:0,iconPath:t.prependIcon,size:e.unref(s),extraClass:"mr-2"},null,8,["iconPath","size"])):e.createCommentVNode("",!0),e.renderSlot(n.$slots,"default"),e.unref(u)?(e.openBlock(),e.createBlock(c,{key:1,iconPath:e.unref(u),size:e.unref(s),extraClass:"ml-2"},null,8,["iconPath","size"])):e.createCommentVNode("",!0)],2))}}),x={install:t=>{t.component("EpChip",i)}};exports.EpChip=i;exports.default=x;
@@ -0,0 +1,114 @@
1
+ import { defineComponent as m, toRefs as x, openBlock as l, createElementBlock as h, unref as r, normalizeClass as y, createElementVNode as g, computed as o, createBlock as p, createCommentVNode as b, renderSlot as C } from "vue";
2
+ const w = ["width", "height", "viewBox"], z = ["d"], f = /* @__PURE__ */ m({
3
+ __name: "EpIcon",
4
+ props: {
5
+ size: { default: 32 },
6
+ viewBox: { default: "0 0 24 24" },
7
+ iconPath: null,
8
+ extraClass: null
9
+ },
10
+ setup(t) {
11
+ const e = t, { size: n, viewBox: s, iconPath: d, extraClass: i } = x(e);
12
+ return (c, u) => (l(), h("svg", {
13
+ width: r(n),
14
+ height: r(n),
15
+ viewBox: r(s),
16
+ color: "currentColor",
17
+ fill: "currentColor",
18
+ class: y(`inline ${r(i)}`)
19
+ }, [
20
+ g("path", { d: r(d) }, null, 8, z)
21
+ ], 10, w));
22
+ }
23
+ }), k = {
24
+ base: {
25
+ default: "bg-white border-black border text-black",
26
+ outlined: "bg-white border-black border text-black"
27
+ },
28
+ primary: {
29
+ default: "bg-primary border-primary border",
30
+ outlined: "border-primary border text-primary"
31
+ },
32
+ secondary: {
33
+ default: "bg-secondary border-secondary border",
34
+ outlined: "border-secondary border text-secondary"
35
+ },
36
+ accent: {
37
+ default: "bg-accent border-accent border",
38
+ outlined: "border-accent border text-accent"
39
+ },
40
+ info: {
41
+ default: "bg-info border-info border",
42
+ outlined: "border-info border text-info"
43
+ },
44
+ warning: {
45
+ default: "bg-warning border-warning border",
46
+ outlined: "border-warning border text-warning"
47
+ },
48
+ success: {
49
+ default: "bg-success border-success border",
50
+ outlined: "border-success border text-success"
51
+ },
52
+ error: {
53
+ default: "bg-error border-error border",
54
+ outlined: "border-error border text-error"
55
+ }
56
+ }, _ = {
57
+ small: "px-1 py-1 text-xs",
58
+ medium: "py-2 px-3 text-sm",
59
+ large: "px-3 py-3 text-lg"
60
+ }, B = /* @__PURE__ */ m({
61
+ __name: "EpChip",
62
+ props: {
63
+ type: { default: "base" },
64
+ size: { default: "medium" },
65
+ outlined: { type: Boolean },
66
+ appendIcon: { default: null },
67
+ prependIcon: { default: null },
68
+ square: { type: Boolean, default: !1 },
69
+ dark: { type: Boolean, default: !1 }
70
+ },
71
+ setup(t) {
72
+ const e = t, n = o(() => e.outlined ? "outlined" : "default"), s = o(() => e.square ? "" : "rounded-full"), d = o(() => e.outlined ? "" : e.dark ? "text-white" : "text-black"), i = o(() => {
73
+ var a;
74
+ return `
75
+ ${d.value}
76
+ ${_[e.size]}
77
+ ${s.value}
78
+ ${(a = k[e.type]) == null ? void 0 : a[n.value]}
79
+ `;
80
+ }), c = o(() => {
81
+ if (e.size === "large")
82
+ return "30";
83
+ if (e.size === "medium")
84
+ return "20";
85
+ if (e.size === "small")
86
+ return "15";
87
+ }), { appendIcon: u } = x(e);
88
+ return (a, v) => (l(), h("span", {
89
+ class: y(`${r(i)} mx-2 cursor-default`)
90
+ }, [
91
+ t.prependIcon ? (l(), p(f, {
92
+ key: 0,
93
+ iconPath: t.prependIcon,
94
+ size: r(c),
95
+ extraClass: "mr-2"
96
+ }, null, 8, ["iconPath", "size"])) : b("", !0),
97
+ C(a.$slots, "default"),
98
+ r(u) ? (l(), p(f, {
99
+ key: 1,
100
+ iconPath: r(u),
101
+ size: r(c),
102
+ extraClass: "ml-2"
103
+ }, null, 8, ["iconPath", "size"])) : b("", !0)
104
+ ], 2));
105
+ }
106
+ }), I = {
107
+ install: (t) => {
108
+ t.component("EpChip", B);
109
+ }
110
+ };
111
+ export {
112
+ B as EpChip,
113
+ I as default
114
+ };
@@ -0,0 +1,6 @@
1
+ (function(t,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],e):(t=typeof globalThis<"u"?globalThis:t||self,e(t.epLibTs={},t.Vue))})(this,function(t,e){"use strict";const f=["width","height","viewBox"],b=["d"],u=e.defineComponent({__name:"EpIcon",props:{size:{default:32},viewBox:{default:"0 0 24 24"},iconPath:null,extraClass:null},setup(o){const r=o,{size:n,viewBox:l,iconPath:a,extraClass:i}=e.toRefs(r);return(s,c)=>(e.openBlock(),e.createElementBlock("svg",{width:e.unref(n),height:e.unref(n),viewBox:e.unref(l),color:"currentColor",fill:"currentColor",class:e.normalizeClass(`inline ${e.unref(i)}`)},[e.createElementVNode("path",{d:e.unref(a)},null,8,b)],10,f))}}),m={base:{default:"bg-white border-black border text-black",outlined:"bg-white border-black border text-black"},primary:{default:"bg-primary border-primary border",outlined:"border-primary border text-primary"},secondary:{default:"bg-secondary border-secondary border",outlined:"border-secondary border text-secondary"},accent:{default:"bg-accent border-accent border",outlined:"border-accent border text-accent"},info:{default:"bg-info border-info border",outlined:"border-info border text-info"},warning:{default:"bg-warning border-warning border",outlined:"border-warning border text-warning"},success:{default:"bg-success border-success border",outlined:"border-success border text-success"},error:{default:"bg-error border-error border",outlined:"border-error border text-error"}},h={small:"px-1 py-1 text-xs",medium:"py-2 px-3 text-sm",large:"px-3 py-3 text-lg"},p=e.defineComponent({__name:"EpChip",props:{type:{default:"base"},size:{default:"medium"},outlined:{type:Boolean},appendIcon:{default:null},prependIcon:{default:null},square:{type:Boolean,default:!1},dark:{type:Boolean,default:!1}},setup(o){const r=o,n=e.computed(()=>r.outlined?"outlined":"default"),l=e.computed(()=>r.square?"":"rounded-full"),a=e.computed(()=>r.outlined?"":r.dark?"text-white":"text-black"),i=e.computed(()=>{var d;return`
2
+ ${a.value}
3
+ ${h[r.size]}
4
+ ${l.value}
5
+ ${(d=m[r.type])==null?void 0:d[n.value]}
6
+ `}),s=e.computed(()=>{if(r.size==="large")return"30";if(r.size==="medium")return"20";if(r.size==="small")return"15"}),{appendIcon:c}=e.toRefs(r);return(d,y)=>(e.openBlock(),e.createElementBlock("span",{class:e.normalizeClass(`${e.unref(i)} mx-2 cursor-default`)},[o.prependIcon?(e.openBlock(),e.createBlock(u,{key:0,iconPath:o.prependIcon,size:e.unref(s),extraClass:"mr-2"},null,8,["iconPath","size"])):e.createCommentVNode("",!0),e.renderSlot(d.$slots,"default"),e.unref(c)?(e.openBlock(),e.createBlock(u,{key:1,iconPath:e.unref(c),size:e.unref(s),extraClass:"ml-2"},null,8,["iconPath","size"])):e.createCommentVNode("",!0)],2))}}),x={install:o=>{o.component("EpChip",p)}};t.EpChip=p,t.default=x,Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
package/dist/main.d.ts ADDED
File without changes
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue-router").Router;
2
+ export default _default;
@@ -0,0 +1,43 @@
1
+ export declare const typeAccordeon: {
2
+ base: {
3
+ default: string;
4
+ outlined: string;
5
+ };
6
+ primary: {
7
+ default: string;
8
+ outlined: string;
9
+ };
10
+ secondary: {
11
+ default: string;
12
+ outlined: string;
13
+ };
14
+ accent: {
15
+ default: string;
16
+ outlined: string;
17
+ };
18
+ warning: {
19
+ default: string;
20
+ outlined: string;
21
+ };
22
+ success: {
23
+ default: string;
24
+ outlined: string;
25
+ };
26
+ error: {
27
+ default: string;
28
+ outlined: string;
29
+ };
30
+ info: {
31
+ default: string;
32
+ outlined: string;
33
+ };
34
+ question: {
35
+ default: string;
36
+ outlined: string;
37
+ };
38
+ tip: {
39
+ default: string;
40
+ outlined: string;
41
+ };
42
+ };
43
+ export type TypeAccordeon = keyof typeof typeAccordeon;
@@ -0,0 +1,31 @@
1
+ export declare const typeAlert: {
2
+ base: {
3
+ default: string;
4
+ outlined: string;
5
+ };
6
+ warning: {
7
+ default: string;
8
+ outlined: string;
9
+ };
10
+ success: {
11
+ default: string;
12
+ outlined: string;
13
+ };
14
+ error: {
15
+ default: string;
16
+ outlined: string;
17
+ };
18
+ info: {
19
+ default: string;
20
+ outlined: string;
21
+ };
22
+ question: {
23
+ default: string;
24
+ outlined: string;
25
+ };
26
+ tip: {
27
+ default: string;
28
+ outlined: string;
29
+ };
30
+ };
31
+ export type TypeAlert = keyof typeof typeAlert;
@@ -0,0 +1,2 @@
1
+ type Border = "border" | "border-2" | "border-4" | "border-8";
2
+ export default Border;
@@ -0,0 +1,41 @@
1
+ export declare const bgVariants: {
2
+ base: {
3
+ default: string;
4
+ outlined: string;
5
+ };
6
+ primary: {
7
+ default: string;
8
+ outlined: string;
9
+ };
10
+ secondary: {
11
+ default: string;
12
+ outlined: string;
13
+ };
14
+ accent: {
15
+ default: string;
16
+ outlined: string;
17
+ };
18
+ info: {
19
+ default: string;
20
+ outlined: string;
21
+ };
22
+ warning: {
23
+ default: string;
24
+ outlined: string;
25
+ };
26
+ success: {
27
+ default: string;
28
+ outlined: string;
29
+ };
30
+ error: {
31
+ default: string;
32
+ outlined: string;
33
+ };
34
+ };
35
+ export declare const sizeVariants: {
36
+ small: string;
37
+ medium: string;
38
+ large: string;
39
+ };
40
+ export type ButtonBgVariant = keyof typeof bgVariants;
41
+ export type ButtonSize = keyof typeof sizeVariants;
@@ -0,0 +1,6 @@
1
+ export declare const density_style: {
2
+ compact: string;
3
+ default: string;
4
+ comfortable: string;
5
+ };
6
+ export type Density = keyof typeof density_style;
@@ -0,0 +1,41 @@
1
+ export declare const chipVariants: {
2
+ base: {
3
+ default: string;
4
+ outlined: string;
5
+ };
6
+ primary: {
7
+ default: string;
8
+ outlined: string;
9
+ };
10
+ secondary: {
11
+ default: string;
12
+ outlined: string;
13
+ };
14
+ accent: {
15
+ default: string;
16
+ outlined: string;
17
+ };
18
+ info: {
19
+ default: string;
20
+ outlined: string;
21
+ };
22
+ warning: {
23
+ default: string;
24
+ outlined: string;
25
+ };
26
+ success: {
27
+ default: string;
28
+ outlined: string;
29
+ };
30
+ error: {
31
+ default: string;
32
+ outlined: string;
33
+ };
34
+ };
35
+ export declare const sizeChipVariants: {
36
+ small: string;
37
+ medium: string;
38
+ large: string;
39
+ };
40
+ export type ChipBgVariant = keyof typeof chipVariants;
41
+ export type ChipSize = keyof typeof sizeChipVariants;
@@ -0,0 +1,7 @@
1
+ export interface MediaCarousel {
2
+ src: string;
3
+ bib: string;
4
+ caption: string;
5
+ uid?: string;
6
+ privacy?: string;
7
+ }
@@ -0,0 +1,11 @@
1
+ export declare const mediaVariants: {
2
+ base: string;
3
+ primary: string;
4
+ secondary: string;
5
+ accent: string;
6
+ info: string;
7
+ warning: string;
8
+ success: string;
9
+ error: string;
10
+ };
11
+ export type MediaVariants = keyof typeof mediaVariants;
@@ -0,0 +1,11 @@
1
+ export declare const radioVariants: {
2
+ base: string;
3
+ primary: string;
4
+ secondary: string;
5
+ accent: string;
6
+ info: string;
7
+ warning: string;
8
+ success: string;
9
+ error: string;
10
+ };
11
+ export type RadioVariants = keyof typeof radioVariants;
package/dist/vite.svg ADDED
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "ep-lib-ts",
3
+ "private": false,
4
+ "version": "0.0.1",
5
+ "type": "module",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "main": "./dist/ep-lib-ts.umd.js",
10
+ "module": "./dist/ep-lib-ts.es.js",
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/ep-lib-ts.es.js",
14
+ "require": "./dist/ep-lib-ts.umd.js"
15
+ },
16
+ "./dist/ep-lib-ts.css": {
17
+ "import": "./dist/ep-lib-ts.css",
18
+ "require": "./dist/ep-lib-ts.css"
19
+ }
20
+ },
21
+ "types": "./dist/main.d.ts",
22
+ "scripts": {
23
+ "dev": "vite",
24
+ "build": "vue-tsc && vite build",
25
+ "preview": "vite preview"
26
+ },
27
+ "dependencies": {
28
+ "@mdi/js": "^7.1.96",
29
+ "@vueuse/core": "^10.1.2",
30
+ "apexcharts": "^3.41.1",
31
+ "katex": "^0.16.8",
32
+ "markdown-it": "^13.0.1",
33
+ "path": "^0.12.7",
34
+ "rollup-plugin-typescript2": "^0.35.0",
35
+ "vee-validate": "^4.8.6",
36
+ "vite-plugin-dts": "^3.5.1",
37
+ "vue": "^3.2.45",
38
+ "vue-router": "^4.1.6",
39
+ "vue3-apexcharts": "^1.4.4"
40
+ },
41
+ "devDependencies": {
42
+ "@tailwindcss/forms": "^0.5.3",
43
+ "@types/katex": "^0.16.2",
44
+ "@types/markdown-it": "^12.2.3",
45
+ "@types/node": "^20.4.8",
46
+ "@vitejs/plugin-vue": "^4.0.0",
47
+ "autoprefixer": "^10.4.14",
48
+ "postcss": "^8.4.23",
49
+ "tailwindcss": "^3.3.2",
50
+ "typescript": "^5.2.0-dev.20230801",
51
+ "vite": "^4.1.0",
52
+ "vue-tsc": "^1.8.8"
53
+ }
54
+ }