-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
68 lines (68 loc) · 1.98 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
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
{
"name": "mudslide",
"version": "0.31.0",
"author": "[email protected]",
"description": "WhatsApp CLI",
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]"
}
]
]
},
"bin": {
"mudslide": "build/index.js"
},
"main": "build/index.js",
"scripts": {
"build": "tsc && chmod a+x ./build/index.js",
"test": "jest",
"start": "yarn build && node ./build/index.js",
"dist": "yarn build && yarn dist:build && yarn dist:pkg:linux && yarn dist:pkg:windows && yarn dist:pkg:macos && yarn dist:bundle:macos",
"dist:build": "esbuild build/index.js --bundle --platform=node --outfile=dist/index.js",
"dist:pkg:linux": "pkg -c assets/pkg-linux.json -o binaries/mudslide-linuxstatic dist/index.js",
"dist:pkg:windows": "pkg -c assets/pkg-win-x64.json -o binaries/mudslide dist/index.js",
"dist:pkg:macos": "pkg -t node20-macos-x64 -o binaries/mudslide dist/index.js",
"dist:bundle:macos": "cd binaries && tar czf mudslide-macos.tgz mudslide"
},
"license": "ISC",
"dependencies": {
"@adiwajshing/keyed-db": "^0.2.4",
"@hapi/boom": "^10.0.0",
"@whiskeysockets/baileys": "^6.7.7",
"commander": "^9.4.1",
"global-agent": "^3.0.0",
"mime": "^3.0.0",
"pino": "^7.0.0",
"qrcode-terminal": "^0.12.0",
"signale": "^1.4.0"
},
"devDependencies": {
"@types/global-agent": "^2.1.1",
"@types/jest": "^29.5.12",
"@types/mime": "^3.0.1",
"@types/node": "^22.7.9",
"@types/signale": "^1.4.4",
"@yao-pkg/pkg": "^5.12.1",
"esbuild": "^0.24.0",
"jest": "^29.7.0",
"semantic-release": "^24.1.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}