forked from M2Station/M2_LOG
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.55 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
66
67
68
69
70
{
"name": "m2-log-tool",
"version": "0.0.7",
"description": "Experiment LOG collector and exporter (UEFI / SAM) - Electron desktop app",
"author": "OA Hsiao",
"license": "MIT",
"main": "src/main/main.js",
"scripts": {
"start": "electron .",
"icon": "node scripts/make-icon.mjs",
"test": "node --test test/selftest.test.js",
"pack": "electron-builder --dir",
"dist": "electron-builder --win --x64 --arm64",
"dist:x64": "electron-builder --win --x64",
"dist:arm64": "electron-builder --win --arm64"
},
"build": {
"appId": "com.m2station.m2log",
"productName": "M2_LOG",
"directories": {
"output": "dist",
"buildResources": "build"
},
"files": [
"src/**/*",
"package.json"
],
"extraFiles": [
{
"from": "highlight",
"to": "highlight"
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "build/icon.ico",
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "M2 LOG"
}
},
"keywords": [
"log",
"uefi",
"sam",
"tool",
"electron"
],
"dependencies": {
"archiver": "7.0.1"
},
"devDependencies": {
"electron": "^31.0.0",
"electron-builder": "^24.13.3"
}
}