-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 869 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 869 Bytes
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
{
"name": "deechat",
"version": "1.0.3",
"description": "DeeChat - Advanced AI Chat Application with DDD Architecture",
"private": true,
"workspaces": [
"app"
],
"scripts": {
"dev": "cd app && npm run dev",
"start": "cd app && npm start",
"build": "cd app && npm run build",
"clean": "cd app && npm run clean",
"install:all": "npm install && cd app && npm install && cd renderer && npm install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=18.0.0"
},
"author": "DeeChat Team",
"license": "MIT",
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/ws": "^8.18.1",
"electron-rebuild": "^3.2.9",
"rimraf": "^5.0.0",
"typescript": "^5.2.0"
},
"dependencies": {
"@deepracticex/mcp-client": "^1.0.3",
"better-sqlite3": "^12.2.0"
}
}