-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.72 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
{
"name": "hyperchat",
"private": true,
"version": "2.0.1",
"type": "module",
"description": "ChatGPT AI Bot.",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"prettier": "prettier ./.prettierrc -w ./src",
"lint": "eslint --cache --fix",
"prepare": "husky install",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"@azure/openai": "1.0.0-beta.12",
"@emoji-mart/data": "^1.2.1",
"@emoji-mart/react": "^1.1.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@heroicons/react": "^2.1.5",
"@lottiefiles/react-lottie-player": "^3.5.4",
"@mui/material": "^6.1.2",
"@tauri-apps/api": "^2.0.2",
"@tauri-apps/plugin-fs": "~2.0.0",
"@tauri-apps/plugin-shell": "~2.0.0",
"@tauri-apps/plugin-updater": "~2.0.0",
"axios": "^1.7.7",
"change-case": "^5.4.4",
"classnames": "^2.5.1",
"dexie": "^4.0.8",
"dexie-export-import": "^4.1.2",
"dexie-react-hooks": "^1.1.7",
"emoji-mart": "^5.6.0",
"formik": "^2.4.6",
"immer": "^10.1.1",
"js-tiktoken": "^1.0.15",
"luxon": "^3.5.0",
"microsoft-cognitiveservices-speech-sdk": "^1.40.0",
"notistack": "^3.0.1",
"openai": "^4.67.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.26.2",
"react-syntax-highlighter": "^15.5.0",
"recoil": "^0.7.7",
"rehype-mathjax": "^6.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"uuid": "^10.0.0",
"wavesurfer.js": "^7.8.6",
"yancey-js-util": "^3.2.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@tauri-apps/cli": "^2.0.2",
"@types/luxon": "^3.4.2",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^10.0.0",
"@types/wavesurfer.js": "^6.0.12",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.20",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.12.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"vite": "^5.4.8"
}
}