-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.56 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
56
57
58
59
60
61
62
63
64
65
{
"name": "velle-ai",
"version": "1.0.2",
"description": "VELLE.AI — Local AI Companion",
"main": "electron.cjs",
"type": "module",
"scripts": {
"start": "node server/index.js",
"dev": "node --watch server/index.js",
"electron": "electron .",
"build": "electron-builder --win",
"build:portable": "electron-builder --win portable",
"build:installer": "electron-builder --win nsis"
},
"build": {
"appId": "com.velle.ai",
"productName": "VELLE.AI",
"icon": "assets/icon.ico",
"asar": true,
"asarUnpack": [
"node_modules/better-sqlite3/**/*",
"memory/**/*"
],
"files": [
"server/**/*",
"public/**/*",
"assets/**/*",
"personalities/**/*",
"memory/**/*",
"electron.cjs",
"preload.cjs",
"package.json",
"node_modules/**/*"
],
"win": {
"target": [
{
"target": "portable",
"arch": ["x64"]
}
],
"icon": "assets/icon.ico",
"artifactName": "VELLE-AI-${version}-portable.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "assets/icon.ico",
"uninstallerIcon": "assets/icon.ico",
"artifactName": "VELLE-AI-${version}-setup.${ext}"
},
"portable": {
"artifactName": "VELLE-AI-${version}-portable.${ext}"
}
},
"dependencies": {
"better-sqlite3": "^11.7.0",
"express": "^4.21.0",
"ws": "^8.18.0"
},
"devDependencies": {
"electron": "^33.0.0",
"electron-builder": "^25.0.0"
}
}