nova-betterchat/package.json

88 lines
2.5 KiB
JSON
Raw Normal View History

2023-03-03 06:25:10 +01:00
{
2023-03-25 06:40:42 +01:00
"name": "better-chatgpt",
2023-03-03 06:25:10 +01:00
"private": true,
"version": "1.0.1",
2023-03-03 06:25:10 +01:00
"type": "module",
"homepage": "./",
"main": "electron/index.cjs",
"author": "Jing Hua <betterchatgpt@mail.tjh.sg>",
"description": "Play and chat smarter with BetterChatGPT - an amazing open-source web app with a better UI for exploring OpenAI's ChatGPT API!",
2023-03-03 06:25:10 +01:00
"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",
"directories": {
"output": "release"
},
"dmg": {
"title": "${productName} ${version}",
"icon": "dist/favicon-516x516.png"
},
"linux": {
2023-04-01 15:36:37 +02:00
"target": [
"tar.gz",
"AppImage"
],
"category": "Chat",
"icon": "dist/favicon-516x516.png"
},
"win": {
"target": "NSIS",
"icon": "dist/favicon-516x516.png"
}
2023-03-03 06:25:10 +01:00
},
"dependencies": {
2023-03-25 14:12:40 +01:00
"@dqbd/tiktoken": "^1.0.2",
"electron-is-dev": "^2.0.0",
"electron-squirrel-startup": "^1.0.0",
2023-04-01 15:36:37 +02:00
"electron-updater": "^5.3.0",
"html2canvas": "^1.4.1",
"i18next": "^22.4.11",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.1.1",
"jspdf": "^2.5.1",
"lodash": "^4.17.21",
2023-03-13 14:54:05 +01:00
"match-sorter": "^6.3.1",
"papaparse": "^5.4.1",
2023-03-03 06:25:10 +01:00
"react": "^18.2.0",
2023-03-03 23:17:11 +01:00
"react-dom": "^18.2.0",
"react-i18next": "^12.2.0",
2023-03-03 23:17:11 +01:00
"react-markdown": "^8.0.5",
"react-scroll-to-bottom": "^4.2.0",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
2023-03-13 14:54:05 +01:00
"uuid": "^9.0.0",
"zustand": "^4.3.6"
2023-03-03 06:25:10 +01:00
},
"devDependencies": {
2023-03-03 23:17:11 +01:00
"@tailwindcss/typography": "^0.5.9",
"@types/lodash": "^4.14.192",
"@types/papaparse": "^5.3.7",
2023-03-03 06:25:10 +01:00
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
2023-03-03 23:38:10 +01:00
"@types/react-scroll-to-bottom": "^4.2.0",
2023-03-13 14:54:05 +01:00
"@types/uuid": "^9.0.1",
2023-03-03 06:25:10 +01:00
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.13",
"concurrently": "^8.0.1",
"electron": "^23.2.0",
"electron-builder": "^23.6.0",
2023-03-03 06:25:10 +01:00
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.3",
2023-03-25 14:12:40 +01:00
"vite": "^4.1.0",
"vite-plugin-top-level-await": "^1.3.0",
"vite-plugin-wasm": "^3.2.2",
"wait-on": "^7.0.1"
2023-03-03 06:25:10 +01:00
}
}