-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
83 lines (83 loc) · 2.4 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
{
"name": "my-chat-gpt",
"private": true,
"version": "0.3.0",
"main": "dist-electron/main/index.js",
"author": {
"name": "Nico Krätschmer",
"email": "[email protected]"
},
"description": "An opensource ChatGPT client for Windows, Mac and Linux",
"scripts": {
"dev": "vite",
"build:client": "tsc && vite build",
"build:electron": "npm run build:client && electron-builder",
"build": "npm run build:client",
"preview": "vite preview",
"prepare": "husky install",
"release": "npm run build:client && electron-builder --publish always"
},
"repository": {
"type": "git",
"url": "[email protected]:Loeffeldude/self-chat-gpt.git"
},
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.js": "eslint --cache --fix"
},
"dependencies": {
"@headlessui/react": "^1.7.13",
"@reduxjs/toolkit": "^1.9.3",
"@uiw/react-md-editor": "^3.20.5",
"axios": "^1.3.4",
"classnames": "^2.3.2",
"electron-store": "^8.1.0",
"gpt-3-encoder": "^1.1.4",
"markdown-it": "^13.0.1",
"openai": "^3.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.2",
"rehype-sanitize": "^5.0.1",
"uuid": "^9.0.0",
"zod": "^3.21.2"
},
"devDependencies": {
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"electron": "^23.1.2",
"electron-builder": "^24.2.1",
"eslint": "^8.35.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"install": "^0.13.0",
"lint-staged": "^13.1.2",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.4",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.3",
"vite": "^4.1.5",
"vite-electron-plugin": "^0.8.2",
"vite-plugin-electron": "^0.11.1",
"vite-plugin-electron-renderer": "^0.12.1",
"vite-plugin-top-level-await": "^1.3.0",
"vite-tsconfig-paths": "^4.0.5"
}
}