-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.44 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "SMNFiler",
"author": "Letmeouted",
"version": "0.2.1",
"description": "SMNFiler",
"license": "GPL-3.0",
"repository": "https://github.com/NTLx/SMNFiler.git",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder --win --ia32"
},
"keywords": [
"Electron",
"Data Analysis",
"SMNFiler"
],
"devDependencies": {
"electron": "^11.1.1",
"electron-builder": "^22.10.5"
},
"build": {
"appId": "SMNFiler.app",
"productName": "SMNFiler",
"files": [
"analysis.exe",
"analysis.mac",
"main.js",
"index.html",
"renderer.js",
"style.css",
"new.html",
"jquery-3.4.1.min.js"
],
"asar": false,
"directories": {
"buildResources": "build",
"output": "dist"
},
"dmg": {
"title": "SMNFiler",
"icon": "build/Icon.icns"
},
"mac": {
"category": "public.app-category.developer-tools",
"target": [
"dmg"
],
"icon": "icons/Icon.icns",
"artifactName": "${productName}.v${version}.MacOS.${ext}"
},
"win": {
"target": [
{
"target": "portable",
"arch": [
"ia32"
]
}
],
"artifactName": "${productName}.v${version}.Win_Portable.${ext}"
}
},
"dependencies": {
"electron-find": "^1.0.7",
"electron-log": "^4.4.1",
"mdui": "^1.0.1",
"screenlog": "^0.3.0"
}
}