-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
104 lines (104 loc) · 3.15 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "koala-client",
"private": true,
"version": "2.1.1",
"type": "module",
"homepage": "./",
"main": "electron/index.cjs",
"author": "Jack Schedel <[email protected]>",
"description": "KoalaClient is an OpenAI API user interface designed to make integrating generative AI into your workflow seamlessly.",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"electron": "concurrently -k \"BROWSER=none pnpm dev\" \"wait-on tcp:5173 && electron .\"",
"pack": "pnpm build && electron-builder --dir",
"make": "pnpm build && electron-builder",
"lint": "tsc && eslint ./src",
"errors": "eslint ./src --quiet",
"format": "prettier --write ./"
},
"build": {
"appId": "koala-client",
"productName": "KoalaClient",
"artifactName": "${name}-${version}-${os}-${arch}.${ext}",
"directories": {
"output": "release"
},
"dmg": {
"title": "${productName} ${version}",
"icon": "dist/icon-rounded-macos.png"
},
"mac": {
"icon": "dist/icon-rounded-macos.png"
},
"linux": {
"target": [
"tar.gz",
"AppImage"
],
"category": "Chat",
"icon": "dist/icon-rounded.png"
},
"win": {
"target": "NSIS",
"icon": "dist/icon-rounded.png"
}
},
"dependencies": {
"@chengsokdara/use-whisper": "^0.2.0",
"@dqbd/tiktoken": "^1.0.17",
"@react-oauth/google": "^0.9.1",
"electron-context-menu": "^3.6.1",
"electron-is-dev": "^2.0.0",
"electron-squirrel-startup": "^1.0.1",
"electron-updater": "^5.3.0",
"html2canvas": "^1.4.1",
"i18next": "^22.5.1",
"i18next-browser-languagedetector": "^7.2.1",
"i18next-http-backend": "^2.6.2",
"jspdf": "^2.5.2",
"katex": "^0.16.11",
"lodash": "^4.17.21",
"match-sorter": "^6.3.4",
"mermaid": "~9.4.3",
"papaparse": "^5.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^12.3.1",
"react-markdown": "^8.0.7",
"react-scroll-to-bottom": "^4.2.0",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.3",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"uuid": "^9.0.1",
"zustand": "^4.5.5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/lodash": "^4.17.13",
"@types/papaparse": "^5.3.15",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-scroll-to-bottom": "^4.2.5",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.7.1",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"electron": "^28.3.3",
"electron-builder": "^23.6.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.14",
"typescript": "^4.9.5",
"vite": "^4.5.5",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.3.0",
"wait-on": "^7.2.0"
},
"packageManager": "[email protected]+sha512.67f5879916a9293e5cf059c23853d571beaf4f753c707f40cb22bed5fb1578c6aad3b6c4107ccb3ba0b35be003eb621a16471ac836c87beb53f9d54bb4612724"
}