-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.85 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "BuddyGenAI",
"author": "parsehex",
"email": "",
"description": "Everyone needs a buddy -- make one and chat with them using BuddyGenAI",
"version": "0.2.5",
"private": true,
"main": "electron/background.js",
"repository": {
"type": "git",
"url": "https://github.com/parsehex/BuddyGenAI"
},
"scripts": {
"dev": "vite --port 3000",
"build": "vite build --outDir ./.output/public",
"postinstall": "electron-builder install-app-deps",
"transpile-electron": "tsc -p ./electron --outDir .output/electron",
"reset-dev": "rm -rf ./data/db.sqlite && npm run dev:electron",
"reset-dev:win": "del /f /q .\\data\\db.sqlite && npm run dev:electron:win",
"dev:electron": "NODE_ENV=development concurrently --kill-others \"vite --port 3000\" \"tsc-watch -p ./electron --outDir .output/electron --onSuccess 'electron ./.output/electron/background.js'\"",
"dev:electron:win": "set NODE_ENV=development& concurrently --kill-others \"vite --port 3000\" \"tsc-watch -p ./electron --outDir .output/electron --onSuccess scripts/windows/run.electron\"",
"build:electron": "npm run build && npm run transpile-electron && node build.js",
"llamacpp:linux": "./scripts/linux/start_llamacpp_server.sh",
"llamacpp:win": "scripts/windows/start_llamacpp_server.ps1",
"whispercpp:linux": "./scripts/linux/start_whispercpp_server.sh",
"whispercpp:win": "scripts/windows/start_whispercpp_server.ps1",
"rebuild": "npx electron-builder node-gyp-rebuild"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.10",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.17",
"@types/uuid": "^9.0.8",
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.4.19",
"concurrently": "^8.0.1",
"electron": "^29.3.1",
"electron-builder": "^24.13.3",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"sass": "^1.60.0",
"sass-loader": "^13.2.2",
"tailwindcss": "^3.4.3",
"tsc-watch": "^6.0.0",
"typescript": "^5.0.3",
"unplugin-vue-router": "^0.8.7",
"vite-tsconfig-paths": "^4.3.2",
"wait-on": "^7.0.1"
},
"dependencies": {
"@vueuse/core": "^10.9.0",
"ai": "^3.0.19",
"axios": "^1.6.8",
"better-sqlite3": "^9.5.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"electron-log": "^5.1.4",
"electron-updater": "^6.3.9",
"express": "^4.18.2",
"ffmpeg-static": "^5.2.0",
"fs-extra": "^11.2.0",
"lucide-vue-next": "^0.365.0",
"openai": "^4.33.0",
"pinia": "^2.1.7",
"radix-vue": "^1.8.1",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.1",
"vite": "^5.2.11",
"vue": "^3.4.27",
"vue-router": "^4.3.2",
"zod": "^3.23.6"
}
}