mirror of
https://github.com/lencx/ChatGPT.git
synced 2024-10-01 01:06:13 -04:00
78 lines
2.3 KiB
JSON
78 lines
2.3 KiB
JSON
{
|
|
"name": "chatgpt",
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"dev:fe": "vite",
|
|
"build:fe": "tsc && vite build",
|
|
"dev": "yarn tauri dev",
|
|
"build": "yarn tauri build",
|
|
"updater": "tr updater",
|
|
"release": "tr release --git",
|
|
"fix:conf": "tr override --json.tauri_updater_active=false",
|
|
"fix:tray": "tr override --json.tauri_systemTray_iconPath=\"icons/tray-icon-light.png\" --json.tauri_systemTray_iconAsTemplate=false",
|
|
"fix:tray:mac": "tr override --json.tauri_systemTray_iconPath=\"icons/tray-icon.png\" --json.tauri_systemTray_iconAsTemplate=true",
|
|
"download": "node ./scripts/download.js",
|
|
"fmt:rs": "cargo fmt",
|
|
"tr": "tr",
|
|
"tauri": "tauri",
|
|
"prettier": "prettier -c --write '**/*.{js,md,ts,tsx,yml}'",
|
|
"pretty-quick": "pretty-quick --staged",
|
|
"prepare": "husky install"
|
|
},
|
|
"license": "MIT",
|
|
"author": "lencx <cxin1314@gmail.com>",
|
|
"keywords": [
|
|
"chatgpt",
|
|
"app",
|
|
"desktop",
|
|
"tauri",
|
|
"macos",
|
|
"linux",
|
|
"windows"
|
|
],
|
|
"homepage": "https://github.com/lencx/ChatGPT",
|
|
"bugs": "https://github.com/lencx/ChatGPT/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/lencx/ChatGPT"
|
|
},
|
|
"dependencies": {
|
|
"@ant-design/icons": "^4.8.0",
|
|
"@monaco-editor/react": "^4.4.6",
|
|
"@tauri-apps/api": "^1.2.0",
|
|
"antd": "^5.1.0",
|
|
"clsx": "^1.2.1",
|
|
"dayjs": "^1.11.7",
|
|
"github-markdown-css": "^5.1.0",
|
|
"lodash": "^4.17.21",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-markdown": "^8.0.4",
|
|
"react-resizable-panels": "^0.0.33",
|
|
"react-router-dom": "^6.4.5",
|
|
"react-syntax-highlighter": "^15.5.0",
|
|
"rehype-raw": "^6.1.1",
|
|
"remark-comment-config": "^7.0.1",
|
|
"remark-gfm": "^3.0.1",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^1.2.2",
|
|
"@tauri-release/cli": "^0.2.3",
|
|
"@types/lodash": "^4.14.191",
|
|
"@types/node": "^18.7.10",
|
|
"@types/react": "^18.0.15",
|
|
"@types/react-dom": "^18.0.6",
|
|
"@types/react-syntax-highlighter": "^15.5.6",
|
|
"@types/uuid": "^9.0.0",
|
|
"@vitejs/plugin-react": "^3.0.0",
|
|
"husky": "^8.0.3",
|
|
"prettier": "^2.8.3",
|
|
"pretty-quick": "^3.1.3",
|
|
"sass": "^1.56.2",
|
|
"typescript": "^4.9.4",
|
|
"vite": "^4.0.0",
|
|
"vite-tsconfig-paths": "^4.0.2"
|
|
}
|
|
}
|