* hackathon: Refactor Jan into an Electron app * chore: correct NextJS export output path * chore: build electron app for all production targets * fix: correct assetPrefix for production build * chore: preferences shortcut * chore: refactor * chore: refactor into ts * feature/#52-compile-plugin-with-webpack * chore: introduce renderer <=> plugins <=> main invocation * chore: suppress errors - deprecate graphql & next-auth * chore: data plugin functions * add llm support Signed-off-by: James <james@jan.ai> * chore: update plugin * chore: introduce data-plugin * chore: plugin invokes main with args and synchronously * chore: install db plugin should setup db * feature: Data Driver Plugin - Load conversations and messages from data plugin * chore: store text message sent * chore: shared core services * feature: inference service * chore: conversations ordering * adding model management service Signed-off-by: James <james@jan.ai> * chore: strict type * feature: abstract plugin preferences * chore: abstract plugin preference * Revert "chore: strict type" This reverts commit 9be188d827a0b2e081e9e04b192c323799de5bb5. * chore: base-plugin styling * feature: create and delete conversation * chore: fix plugin search & clean messages * chore: typing indicator * chore: refactor useSendChatMessage * chore: persists inserted id to in-memory messages * chore: search conversation history * add delete and download model (#189) Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai> * chore: add empty state for conversation list * chore: prompt missing extension function & fix app crashes * chore: prompt user to install required plugins * chore: add launch background * chore: relaunch app on model downloaded * Jan app add installation instruction (#191) Co-authored-by: Hien To <> * Chore: rename folder web-client to app (#192) * Chore: rename folder web-client to app --------- Co-authored-by: Hien To <> * revert: add pre-install package * add progress for downloading model Signed-off-by: James <james@jan.ai> * feature: production bundle * add download progress Signed-off-by: James <james@jan.ai> * chore: add new chat function * fix: electron asar unpack modules & dynamic import * chore: fix unpack * chore: fix dev pack * Add instruction to build dmg file to README.md * init model dynamically Signed-off-by: James <james@jan.ai> --------- Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai> Co-authored-by: NamH <NamNh0122@gmail.com> Co-authored-by: hiento09 <136591877+hiento09@users.noreply.github.com> Co-authored-by: Hien To <>
81 lines
2.1 KiB
JSON
81 lines
2.1 KiB
JSON
{
|
|
"name": "jan-web",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"main": "./electron/main.ts",
|
|
"homepage": "./",
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"electron:start": "concurrently \"yarn dev\" \"wait-on http://localhost:3000 && electron .\"",
|
|
"electron:build:all": "yarn build && electron-builder build --publish never -mwl",
|
|
"lint": "next lint",
|
|
"compile": "tsc --noEmit -p . --pretty",
|
|
"watch": "graphql-codegen -w"
|
|
},
|
|
"build": {
|
|
"appId": "com.app.id",
|
|
"productName": "Jan Desktop App",
|
|
"asarUnpack": [
|
|
"node_modules",
|
|
"electron/core"
|
|
],
|
|
"files": [
|
|
"out/**/*",
|
|
"electron/main.ts",
|
|
"package.json",
|
|
"electron/preload.js",
|
|
"electron/core"
|
|
],
|
|
"extends": null,
|
|
"mac": {
|
|
"type": "distribution"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@headlessui/react": "^1.7.15",
|
|
"@heroicons/react": "^2.0.18",
|
|
"@tailwindcss/typography": "^0.5.9",
|
|
"@types/node": "20.4.2",
|
|
"@types/react": "18.2.15",
|
|
"@types/react-dom": "18.2.7",
|
|
"@types/react-syntax-highlighter": "^15.5.7",
|
|
"autoprefixer": "10.4.14",
|
|
"classnames": "^2.3.2",
|
|
"electron-is-dev": "^2.0.0",
|
|
"embla-carousel": "^8.0.0-rc11",
|
|
"embla-carousel-react": "^8.0.0-rc11",
|
|
"eslint": "8.45.0",
|
|
"eslint-config-next": "13.4.10",
|
|
"jotai": "^2.4.0",
|
|
"jotai-optics": "^0.3.1",
|
|
"jwt-decode": "^3.1.2",
|
|
"next": "13.4.10",
|
|
"next-auth": "^4.23.1",
|
|
"next-themes": "^0.2.1",
|
|
"node-llama-cpp": "^2.4.1",
|
|
"optics-ts": "^2.4.1",
|
|
"postcss": "8.4.26",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"react-hook-form": "^7.45.4",
|
|
"react-syntax-highlighter": "^15.5.0",
|
|
"remark": "^14.0.3",
|
|
"remark-html": "^15.0.2",
|
|
"request": "^2.88.2",
|
|
"request-progress": "^3.0.0",
|
|
"tailwindcss": "3.3.3",
|
|
"typescript": "5.1.6",
|
|
"pluggable-electron": "^0.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/forms": "^0.5.4",
|
|
"concurrently": "^8.2.1",
|
|
"electron": "^26.2.1",
|
|
"electron-builder": "^24.6.4",
|
|
"encoding": "^0.1.13",
|
|
"wait-on": "^7.0.1"
|
|
}
|
|
}
|