-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.36 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.36 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
79
80
81
82
83
84
85
{
"name": "flashtitan",
"version": "0.0.28",
"description": "FlashTitan is a Windows-first Electron utility for safely preparing removable media with strong guardrails.",
"main": "main.js",
"author": "BubblesTheDev",
"license": "Apache-2.0",
"private": true,
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"build": "electron-builder --win nsis",
"dist:win": "electron-builder --win nsis",
"test": "node --test",
"lint:security": "node -e \"console.log('Security review is enforced through the Electron boundary and flash-engine gate.')\""
},
"build": {
"appId": "com.flashtitan.desktop",
"productName": "FlashTitan",
"copyright": "Copyright (c) 2026 BubblesTheDev",
"compression": "maximum",
"asar": true,
"files": [
"main.js",
"helper-client.js",
"helper-runner.js",
"flash-engine.js",
"windows-media.js",
"archive-utils.js",
"download-utils.js",
"support-bundle.js",
"preset-utils.js",
"device-safety.js",
"ipc-policy.js",
"iso-presets.json",
"settings-store.js",
"log-store.js",
"preload.js",
"index.html",
"style.css",
"renderer.js",
"tests/**/*",
"TEST-MATRIX.md",
"windows-scripts/**/*",
"README.md",
"package.json"
],
"directories": {
"buildResources": "build"
},
"win": {
"target": [
"nsis"
],
"requestedExecutionLevel": "requireAdministrator",
"forceCodeSigning": false,
"signAndEditExecutable": false,
"artifactName": "FlashTitan-${version}-Setup.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": "always",
"createStartMenuShortcut": true,
"menuCategory": "FlashTitan",
"shortcutName": "FlashTitan",
"runAfterFinish": false,
"include": "build/installer.nsh",
"license": "build/LICENSE.txt",
"uninstallDisplayName": "FlashTitan Bootable Media Utility",
"artifactName": "FlashTitan-${version}-Installer.${ext}",
"warningsAsErrors": false
}
},
"dependencies": {
"7zip-bin": "^5.2.0",
"drivelist": "^12.0.2"
},
"devDependencies": {
"electron": "^42.3.0",
"electron-builder": "^26.8.1"
}
}