-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
118 lines (118 loc) · 3.9 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "llm-x",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "cross-env DEBUG=vite-plugin-pwa SW_DEV=true vite --force",
"build": "SW=true vite build",
"chrome:dev": "cross-env TARGET=chrome vite --force",
"chrome:dev:watch": "cross-env TARGET=chrome vite build --watch --mode development",
"chrome:build": "cross-env TARGET=chrome SW=true vite build",
"firefox:dev": "cross-env TARGET=firefox vite --force",
"firefox:dev:watch": "cross-env TARGET=firefox vite build --watch --mode development",
"firefox:build": "cross-env TARGET=firefox SW=true vite build",
"build_dev": "lint; SW=true vite build",
"lint": "tsc; eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"generate-pwa-assets": "pwa-assets-generator --preset minimal-2023 public/logo.svg",
"prepare": "husky install",
"test": "vite build; vitest",
"test:ui": "vite build; vitest --ui",
"test:watch": "concurrently 'vitest' 'vite build --watch'",
"check-circular-deps": "npx madge --circular --extensions ts ."
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css,md,html,json}": [
"npx prettier --write"
]
},
"dependencies": {
"@langchain/community": "^0.0.36",
"@lmstudio/sdk": "^0.2.0",
"@nextui-org/react": "^2.4.1",
"@paralleldrive/cuid2": "^2.2.2",
"axios": "^1.6.8",
"camelcase-keys": "^9.1.3",
"comlink": "^4.4.1",
"framer-motion": "^11.0.28",
"gh-pages": "^6.1.1",
"highlight.js": "^11.9.0",
"kbar": "^0.1.0-beta.45",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"mobx": "^6.12.0",
"mobx-react-lite": "^4.0.5",
"mobx-state-tree": "^5.4.1",
"moment": "^2.30.1",
"mst-persist": "^0.1.4",
"ollama": "^0.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.51.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.28.0",
"react-scrollable-feed": "^2.0.2",
"react-text-to-speech": "^0.16.1",
"react-textarea-autosize": "^8.5.3",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.1",
"use-media": "^1.5.0",
"vite-tsconfig-paths": "^4.3.2",
"yet-another-react-lightbox": "^3.17.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.42.1",
"@rollup/plugin-replace": "^5.0.5",
"@tailwindcss/typography": "^0.5.10",
"@types/chrome": "^0.0.280",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.24",
"@types/react": "^18.2.62",
"@types/react-dom": "^18.2.19",
"@types/webextension-polyfill": "^0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vite-pwa/assets-generator": "^0.2.4",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^1.3.1",
"autoprefixer": "^10.4.18",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"daisyui": "^4.7.2",
"eslint": "^8.57.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"fishery": "^2.2.2",
"husky": ">=6",
"lint-staged": ">=10",
"msw": "^2.2.2",
"playwright": "^1.42.1",
"postcss": "^8.4.34",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"typescript": "^5.2.2",
"vite": "^5.1.5",
"vite-plugin-comlink": "^5.1.0",
"vite-plugin-mkcert": "^1.17.4",
"vite-plugin-pwa": "^0.19.2",
"vite-plugin-remove-console": "^2.2.0",
"vite-plugin-web-extension": "^4.2.0",
"vitest": "^1.3.1",
"webextension-polyfill": "^0.12.0"
},
"engines": {
"node": ">=21.0.0",
"yarn": ">=4.0.0"
},
"packageManager": "[email protected]"
}