-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 925 Bytes
/
package.json
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
{
"name": "isunfa",
"version": "0.8.0",
"description": "Blockchain and Artificial Intelligence Forensic Accounting Desktop Application",
"main": "main.js",
"scripts": {
"start": "electron . --trace-warnings",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux"
},
"build": {
"extraResources": [
"./extra/**"
],
"win": {
"target": {
"target": "nsis",
"arch": [
"x64",
"ia32"
]
},
"icon": "assets/icon.png"
},
"mac": {
"icon": "assets/icon.png"
},
"linux": {
"icon": "assets/icon.png"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^31.1.0",
"electron-builder": "^24.13.3"
},
"dependencies": {
"axios": "^1.7.2"
}
}