-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
98 lines (98 loc) · 2.94 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
96
97
98
{
"name": "chatgpt-vue3-light-mvp",
"version": "0.0.1",
"author": "Wisdom <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"build:gh-pages": "cross-env VITE_ROUTER_MODE=hash pnpm build",
"preview": "vite preview --host",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"stylelint": "stylelint .scss, .vue ./src",
"stylelint:fix": "stylelint --fix .scss, .vue ./src"
},
"engines": {
"node": ">= 18.12.x",
"pnpm": ">= 9.x"
},
"homepage": "https://github.com/pdsuwwz/chatgpt-vue3-light-mvp",
"repository": {
"type": "git",
"url": "git+https://github.com/pdsuwwz/chatgpt-vue3-light-mvp"
},
"bugs": {
"url": "https://github.com/pdsuwwz/chatgpt-vue3-light-mvp/issues"
},
"dependencies": {
"@vueuse/core": "^12.4.0",
"axios": "1.7.9",
"dompurify": "^3.2.3",
"js-cookie": "^3.0.5",
"lodash-es": "^4.17.21",
"marked": "^15.0.6",
"naive-ui": "^2.41.0",
"nprogress": "^0.2.0",
"pinia": "^2.3.0",
"uuid": "^11.0.5",
"vfile": "^6.0.3",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.18.0",
"@iconify/json": "^2.2.294",
"@iconify/vue": "^4.3.0",
"@stylistic/eslint-plugin": "^2.13.0",
"@stylistic/stylelint-plugin": "^3.1.1",
"@types/js-cookie": "^3.0.6",
"@types/lodash-es": "^4.17.12",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.10.6",
"@types/nprogress": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@unocss/preset-icons": "^65.4.0",
"@unocss/preset-rem-to-px": "^65.4.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/babel-plugin-jsx": "^1.2.5",
"@vue/compiler-sfc": "^3.5.13",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-html": "8.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"highlight.js": "^11.11.1",
"identity-obj-proxy": "^3.0.0",
"katex": "^0.16.20",
"markdown-it": "^14.1.0",
"markdown-it-highlightjs": "^4.2.0",
"postcss": "^8.5.0",
"postcss-html": "^1.7.0",
"postcss-scss": "^4.0.9",
"prismjs": "^1.29.0",
"rollup": "^4.30.1",
"sass": "1.83.3",
"stylelint": "^16.13.1",
"stylelint-config-recommended-scss": "14.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-config-standard-scss": "14.0.0",
"typescript": "^5.7.3",
"ua-parser-js": "^2.0.0",
"unocss": "^65.4.0",
"unplugin-auto-import": "^19.0.0",
"unplugin-icons": "^22.0.0",
"unplugin-vue-components": "^28.0.0",
"vite": "^6.0.7",
"vite-raw-plugin": "^1.0.2",
"vue-eslint-parser": "^9.4.3"
}
}