-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
2,841 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,47 +4,16 @@ | |
"version": "1.0.2", | ||
"type": "module", | ||
"homepage": "./", | ||
"main": "electron/index.cjs", | ||
"author": "Jing Hua <[email protected]>", | ||
"description": "Play and chat smarter with BetterChatGPT - an amazing open-source web app with a better UI for exploring OpenAI's ChatGPT API!", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc && vite build", | ||
"preview": "vite preview", | ||
"electron": "concurrently -k \"BROWSER=none yarn dev\" \"wait-on tcp:5173 && electron .\"", | ||
"pack": "yarn build && electron-builder --dir", | ||
"make": "yarn build && electron-builder" | ||
}, | ||
"build": { | ||
"appId": "better-chatgpt", | ||
"productName": "Better ChatGPT", | ||
"artifactName": "${os}-${name}-${version}-${arch}.${ext}", | ||
"directories": { | ||
"output": "release" | ||
}, | ||
"dmg": { | ||
"title": "${productName} ${version}", | ||
"icon": "dist/icon-rounded.png" | ||
}, | ||
"linux": { | ||
"target": [ | ||
"tar.gz", | ||
"AppImage" | ||
], | ||
"category": "Chat", | ||
"icon": "dist/icon-rounded.png" | ||
}, | ||
"win": { | ||
"target": "NSIS", | ||
"icon": "dist/icon-rounded.png" | ||
} | ||
"preview": "vite preview" | ||
}, | ||
"dependencies": { | ||
"@dqbd/tiktoken": "^1.0.2", | ||
"@react-oauth/google": "^0.9.0", | ||
"electron-is-dev": "^2.0.0", | ||
"electron-squirrel-startup": "^1.0.0", | ||
"electron-updater": "^5.3.0", | ||
"html2canvas": "^1.4.1", | ||
"i18next": "^22.4.11", | ||
"i18next-browser-languagedetector": "^7.0.1", | ||
|
@@ -76,9 +45,6 @@ | |
"@types/uuid": "^9.0.1", | ||
"@vitejs/plugin-react-swc": "^3.0.0", | ||
"autoprefixer": "^10.4.13", | ||
"concurrently": "^8.0.1", | ||
"electron": "^23.2.0", | ||
"electron-builder": "^23.6.0", | ||
"postcss": "^8.4.21", | ||
"tailwindcss": "^3.2.7", | ||
"typescript": "^4.9.3", | ||
|
Oops, something went wrong.