-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.02 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.02 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
{
"name": "credential-logger",
"version": "1.2.0",
"description": "CREDENTIAL LOGGER - Interfaccia moderna per clonare server Minecraft",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "electron-builder --win --x64",
"build-portable": "electron-builder --win portable",
"build-all": "electron-builder --win --x64 --ia32",
"console": "node minecraft-cloner.js"
},
"dependencies": {
"axios": "^1.12.2",
"minecraft-protocol": "^1.44.0",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"electron": "^27.0.0",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.mcpentester.credlogger",
"productName": "MC Credential Logger",
"directories": {
"output": "dist",
"buildResources": "build"
},
"files": [
"main.js",
"minecraft-cloner.js",
"tree-kill-helper.js",
"renderer/**/*",
"assets/**/*",
"package.json",
"node_modules/**/*"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
],
"icon": "assets/icon.ico",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"requestedExecutionLevel": "requireAdministrator",
"sign": null,
"signingHashAlgorithms": null
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "MC Credential Logger",
"installerIcon": "assets/icon.ico",
"uninstallerIcon": "assets/icon.ico",
"license": "LICENSE.txt"
},
"portable": {
"artifactName": "${productName}-${version}-Portable.${ext}"
}
},
"keywords": [
"minecraft",
"cloner",
"phishing",
"pentesting",
"electron",
"gui"
],
"author": "MC Pentester",
"license": "MIT"
}