-
Notifications
You must be signed in to change notification settings - Fork 469
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.16 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.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
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
{
"name": "chatgpt-web",
"type": "module",
"version": "2.13.3",
"private": false,
"description": "ChatGPT Web",
"author": "ChatGPT Web Contributors <dev@chatgpt-web.dev>",
"keywords": [
"chatgpt-web",
"chatgpt",
"chatbot",
"vue"
],
"scripts": {
"dev": "vite",
"build": "pnpm run type-check && pnpm run build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"bootstrap": "pnpm install && pnpm run common:prepare",
"common:cleanup": "rimraf node_modules && rimraf pnpm-lock.yaml",
"common:prepare": "husky install"
},
"devDependencies": {
"@antfu/eslint-config": "^6.3.0",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@iconify/json": "^2.2.397",
"@tailwindcss/vite": "^4.1.17",
"@types/katex": "^0.16.7",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-link-attributes": "^3.0.5",
"@types/node": "^24.10.1",
"@vitejs/plugin-vue": "^6.0.2",
"@vscode/markdown-it-katex": "^1.1.2",
"@vueuse/core": "^14.1.0",
"axios": "^1.13.2",
"chart.js": "^4.5.1",
"dayjs": "^1.11.19",
"eslint": "^9.39.1",
"highlight.js": "^11.11.1",
"html2canvas": "^1.4.1",
"husky": "^9.1.7",
"jwt-decode": "^4.0.0",
"katex": "0.16.25",
"less": "^4.4.2",
"lint-staged": "^16.2.7",
"markdown-it": "^14.1.0",
"markdown-it-link-attributes": "^4.0.1",
"naive-ui": "^2.43.2",
"pinia": "^3.0.4",
"qrcode.vue": "^3.6.0",
"rimraf": "^6.1.2",
"tailwindcss": "^4.1.17",
"typescript": "~5.9.3",
"unplugin-auto-import": "^20.3.0",
"unplugin-icons": "^22.5.0",
"unplugin-vue-components": "^30.0.0",
"vite": "^7.2.6",
"vue": "^3.5.25",
"vue-chartjs": "^5.3.3",
"vue-i18n": "^11.2.2",
"vue-router": "^4.6.3",
"vue-tsc": "^3.1.5"
},
"lint-staged": {
"*.{ts,tsx,vue}": [
"pnpm lint:fix"
]
},
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a"
}