forked from Tomobobo710/SimpleChatJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-build.json
More file actions
55 lines (55 loc) · 1.2 KB
/
Copy pathpackage-build.json
File metadata and controls
55 lines (55 loc) · 1.2 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
48
49
50
51
52
53
54
55
{
"name": "simplechatjs",
"version": "1.0.0",
"description": "Simple chat with MCP support",
"author": "SimpleChatJS",
"main": "electron-main.js",
"scripts": {
"start": "node backend/server.js",
"dev": "node backend/server.js",
"build": "electron-builder --publish=never"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^9.3.0",
"express": "^4.18.2",
"multer": "^2.0.1",
"officeparser": "^4.0.4",
"open": "^8.4.2",
"pdf-parse": "^1.1.1"
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1"
},
"build": {
"appId": "com.simplechatjs.app",
"productName": "SimpleChatJS",
"directories": {
"output": "dist-electron"
},
"files": [
"**/*",
"!node_modules/.cache",
"!dist-electron",
"!*.bat",
"!*.ps1",
"!build/**/*",
"!package.json.backup",
"!package-build.json"
],
"win": {
"target": "dir",
"icon": "simplechatjs.ico"
},
"linux": {
"target": "dir",
"icon": "simplechatjs.ico"
},
"mac": {
"target": "dir",
"icon": "simplechatjs.ico"
},
"forceCodeSigning": false
}
}