-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.01 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.01 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "chatluna-webui",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "cross-env VITE_NODE_ENV=development vite --mode development",
"dev:prod": "cross-env VITE_NODE_ENV=production vite --mode production",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"@radix-icons/vue": "^1.0.0",
"@server-sent-stream/web": "^1.0.3",
"@tailwindcss/vite": "^4.0.9",
"@vee-validate/zod": "^4.15.0",
"@vueuse/core": "^13.1.0",
"autoprefixer": "^10.4.20",
"axios": "^1.8.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"highlight.js": "^11.11.1",
"marked": "^15.0.7",
"pinia": "^3.0.1",
"pinia-plugin-persistedstate": "^4.2.0",
"radix-vue": "^1.9.17",
"reka-ui": "^2.0.2",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.9",
"tailwindcss-animate": "^1.0.7",
"vee-validate": "^4.15.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.5",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/markdown-it": "^14",
"@types/node": "^22.13.9",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.4.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.21.0",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^26.0.0",
"npm-run-all2": "^7.0.2",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vitest": "^3.0.7",
"vue-tsc": "^2.2.8"
},
"packageManager": "yarn@4.3.1"
}