-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.31 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
{
"name": "saiphai",
"productName": "SaiphAI",
"author": "Serpenseth",
"version": "2.3.1",
"description": "AI coding assistant with OpenAI and Ollama support",
"main": "./main/index.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"dependencies": {
"chokidar": "^3.6.0",
"dotenv": "^15.0.0",
"electron-store": "^8.1.0",
"follow-redirects": "^1.16.0",
"ignore": "^5.3.0",
"marked": "^11.1.0",
"sql.js": "^1.14.1"
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1"
},
"build": {
"appId": "com.serpenseth.saiphai",
"productName": "SaiphAI",
"artifactName": "${productName}-${version}.${ext}",
"win": {
"icon": "assets/logo.ico",
"target": "nsis"
},
"linux": {
"target": [
"Appimage"
],
"icon": "assets/logo.png"
},
"mac": {
"icon": "assets/logo.icns"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "SaiphAI"
},
"directories": {
"output": "dist"
},
"files": [
"main/**/*.js",
"preload/**/*.js",
"renderer/**/*",
"package.json",
"assets/**"
]
}
}