-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.03 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
71
72
73
74
75
76
77
78
{
"name": "bitlockpick",
"version": "1.0.0-beta.5.3",
"description": "BitLockPick — a modern BitLocker toolkit for Windows: recovery-key validator & typo/partial-key repairer, and full drive manager (unlock, lock, encrypt, decrypt).",
"main": "main.js",
"author": "lobrzut",
"license": "MIT",
"homepage": "https://github.com/lobrzut/BitLockPick",
"repository": {
"type": "git",
"url": "https://github.com/lobrzut/BitLockPick.git"
},
"scripts": {
"start": "electron .",
"dev": "electron .",
"pack": "electron-builder --dir",
"build": "electron-builder",
"dist": "electron-builder --win",
"dist:mac": "electron-builder --mac"
},
"keywords": [
"bitlocker",
"recovery",
"key",
"validator",
"repairer",
"encryption",
"windows",
"electron"
],
"devDependencies": {
"electron": "^31.7.7",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.lobrzut.bitlockpick",
"productName": "BitLockPick",
"copyright": "Copyright © 2026 lobrzut",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"backend-macos.js",
"renderer/**/*",
"assets/**/*"
],
"win": {
"icon": "assets/icon.ico",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"target": [
{ "target": "nsis", "arch": ["x64"] }
]
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "BitLockPick",
"uninstallDisplayName": "BitLockPick (Beta)"
},
"mac": {
"icon": "assets/icon.png",
"category": "public.app-category.utilities",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"target": [
{ "target": "dmg", "arch": ["arm64", "x64"] },
{ "target": "zip", "arch": ["arm64", "x64"] }
]
},
"dmg": {
"title": "BitLockPick ${version}"
}
}
}