forked from Bin-Huang/chatbox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.35 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
{
"name": "chatbox",
"productName": "chatbox",
"private": true,
"description": "a cross-platform desktop client for ChatGPT API (OpenAI API)",
"scripts": {
"start:react": "react-scripts start",
"build:react": "react-scripts build",
"test:react": "react-scripts test",
"eject:react": "react-scripts eject",
"dev": "tauri dev",
"build": "tauri build",
"tauri": "tauri"
},
"repository": {
"type": "git",
"url": "https://github.com/Bin-Huang/chatbox.git"
},
"keywords": [],
"author": {
"name": "bennhuang",
"email": "[email protected]"
},
"license": "GPL-3.0 license",
"devDependencies": {
"@tauri-apps/cli": "^1.2.3",
"@types/highlight.js": "^10.1.0",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-link-attributes": "^3.0.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"css-loader": "^6.0.0",
"eslint": "8.36.0",
"eslint-plugin-import": "^2.25.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"node-loader": "^2.0.0",
"react-scripts": "^5.0.1",
"sass": "^1.59.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.0.0",
"ts-loader": "^9.2.2",
"ts-node": "^10.0.0",
"typescript": "~4.5.4"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.11",
"@tauri-apps/api": "^1.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@traptitech/markdown-it-katex": "^3.6.0",
"axios": "^0.26.0",
"form-data": "^4.0.0",
"github-markdown-css": "^5.2.0",
"gpt-3-encoder": "^1.1.4",
"gpt3-tokenizer": "^1.1.5",
"highlight.js": "^11.7.0",
"markdown-it": "^13.0.1",
"markdown-it-link-attributes": "^4.0.1",
"material-ui-popup-state": "^5.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.5",
"uuid": "^9.0.0",
"web-vitals": "^2.1.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}