-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.15 KB
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
{
"name": "localchat-ai",
"version": "1.0.0",
"description": "LocalChat.ai - AI chat application powered by DeepSeek API",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"frontend": "vite",
"build": "vite build",
"preview": "vite preview",
"server": "node server/index.js",
"start": "concurrently \"npm run server\" \"npm run frontend\""
},
"dependencies": {
"archiver": "^7.0.1",
"axios": "^1.6.0",
"cors": "^2.8.5",
"dompurify": "^3.0.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"marked": "^9.1.6",
"multer": "^1.4.5-lts.1",
"pdf-parse": "^1.1.1",
"prismjs": "^1.30.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.6.6",
"sqlite3": "^5.1.7",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@vitejs/plugin-react": "^5.0.4",
"concurrently": "^8.2.2",
"vite": "^7.1.9"
},
"keywords": [
"ai",
"chat",
"deepseek",
"localchat",
"assistant"
],
"author": "LocalChat.ai",
"license": "MIT"
}