-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.93 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
{
"name": "bileyes",
"version": "0.1.14",
"author": "Mohamed.saeed.elghamazy@gmail.com",
"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": {
"bileyes": "./lib/dist/index.js"
},
"main": "./lib/dist/index.js",
"scripts": {
"build": "tsc && chmod a+x ./lib/dist/index.js",
"test": "jest",
"start": "yarn build && node ./lib/dist/index.js login",
"dist": "yarn build && yarn dist:build && yarn dist:pkg:linux && yarn dist:pkg:windows && yarn dist:pkg:macos && yarn dist:bundle:macos",
"dist:build": "ncc build lib/dist/bundle.min.js -o dist-ncc",
"dist:pkg:linux": "pkg -c pkg-linux.json -o binaries/bileyes-linuxstatic dist-ncc/index.js",
"dist:pkg:windows": "pkg -c pkg-win-x64.json -o binaries/bileyes dist-ncc/index.js",
"dist:pkg:macos": "pkg -t node16-macos-x64 -o binaries/bileyes dist-ncc/index.js",
"dist:bundle:macos": "cd binaries && tar czf bileyes-macos.tgz bileyes"
},
"license": "ISC",
"dependencies": {
"@adiwajshing/keyed-db": "^0.2.4",
"@hapi/boom": "^10.0.0",
"@whiskeysockets/baileys": "^6.6.0",
"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.4.0",
"@types/mime": "^3.0.1",
"@types/node": "^18.11.10",
"@types/pino": "^7.0.5",
"@types/signale": "^1.4.4",
"@vercel/ncc": "^0.36.1",
"jest": "^29.4.2",
"pkg": "^5.8.1",
"semantic-release": "^20.0.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.3"
}
}