-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 KB
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
{
"name": "llm-chat",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"tsc": "tsc",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@types/katex": "^0.16.7",
"element-plus": "^2.9.3",
"highlight.js": "^11.11.1",
"katex": "^0.16.21",
"markdown-it": "^14.1.0",
"pinia": "^2.3.1",
"pinia-plugin-persistedstate": "^4.2.0",
"rollup": "^4.33.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/lodash": "^4.17.15",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.13.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^3.0.7",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.21.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.15.0",
"jsdom": "^26.0.0",
"sass-embedded": "^1.83.4",
"typescript": "~5.6.2",
"typescript-eslint": "^8.25.0",
"vite": "^6.0.5",
"vitest": "^3.0.7",
"vue-tsc": "^2.2.0"
}
}