-
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.01 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.01 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": "wave",
"version": "1.0.0",
"description": "Correcteur de code par IA",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build-win": "electron-builder --win",
"build-mac": "electron-builder --mac",
"build-linux": "electron-builder --linux"
},
"author": "Maxlware Developement",
"license": "MIT",
"devDependencies": {
"electron": "^25.0.0",
"electron-builder": "^24.0.0"
},
"dependencies": {
"@google/generative-ai": "^0.9.0",
"axios": "^1.4.0",
"vm2": "^3.9.19"
},
"build": {
"appId": "com.maxlware.wave",
"productName": "Wave",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!node_modules"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "assets/icon.png"
},
"win": {
"target": "nsis",
"icon": "assets/icon.png"
},
"linux": {
"target": "AppImage",
"icon": "assets/icon.png"
}
}
}