1
0
mirror of https://github.com/lencx/ChatGPT.git synced 2024-10-01 01:06:13 -04:00
Unofficial_ChatGPT_Client/package.json

58 lines
1.3 KiB
JSON
Raw Normal View History

2022-12-07 05:22:18 -05:00
{
"name": "chatgpt",
"version": "0.0.0",
"scripts": {
2022-12-12 22:58:47 -05:00
"dev:fe": "vite",
"build:fe": "tsc && vite build",
2022-12-07 05:22:18 -05:00
"dev": "yarn tauri dev",
"build": "yarn tauri build",
2022-12-07 05:45:15 -05:00
"updater": "tr updater",
2022-12-07 07:36:42 -05:00
"release": "tr release --git",
2022-12-09 23:18:35 -05:00
"download": "node ./scripts/download.js",
2022-12-07 05:45:15 -05:00
"tr": "tr",
2022-12-07 05:22:18 -05:00
"tauri": "tauri"
},
2022-12-07 07:02:31 -05:00
"license": "MIT",
"author": "lencx <cxin1314@gmail.com>",
2022-12-11 08:17:44 -05:00
"keywords": [
"chatgpt",
"app",
"desktop",
"tauri",
"macos",
"linux",
"windows"
],
2022-12-07 07:02:31 -05:00
"homepage": "https://github.com/lencx/ChatGPT",
"bugs": "https://github.com/lencx/ChatGPT/issues",
"repository": {
"type": "git",
"url": "https://github.com/lencx/ChatGPT"
},
2022-12-12 22:58:47 -05:00
"dependencies": {
2022-12-15 08:33:25 -05:00
"@ant-design/icons": "^4.8.0",
2022-12-13 06:10:42 -05:00
"@tauri-apps/api": "^1.2.0",
2022-12-21 19:59:58 -05:00
"antd": "^5.1.0",
2022-12-18 13:56:53 -05:00
"dayjs": "^1.11.7",
2022-12-14 11:02:54 -05:00
"lodash": "^4.17.21",
2022-12-12 22:58:47 -05:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2022-12-16 06:58:40 -05:00
"react-router-dom": "^6.4.5",
"uuid": "^9.0.0"
2022-12-12 22:58:47 -05:00
},
2022-12-07 05:22:18 -05:00
"devDependencies": {
2022-12-13 06:10:42 -05:00
"@tauri-apps/cli": "^1.2.2",
"@tauri-release/cli": "^0.2.3",
2022-12-14 11:02:54 -05:00
"@types/lodash": "^4.14.191",
2022-12-12 22:58:47 -05:00
"@types/node": "^18.7.10",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
2022-12-16 06:58:40 -05:00
"@types/uuid": "^9.0.0",
2022-12-12 22:58:47 -05:00
"@vitejs/plugin-react": "^3.0.0",
2022-12-13 06:10:42 -05:00
"sass": "^1.56.2",
"typescript": "^4.9.4",
2022-12-12 22:58:47 -05:00
"vite": "^4.0.0",
2022-12-13 06:10:42 -05:00
"vite-tsconfig-paths": "^4.0.2"
2022-12-07 05:22:18 -05:00
}
}