forked from sorke/Baileys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.45 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@adiwajshing/baileys",
"version": "5.0.0",
"description": "WhatsApp API",
"homepage": "https://github.com/adiwajshing/Baileys",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"whatsapp",
"js-whatsapp",
"whatsapp-api",
"whatsapp-web",
"whatsapp",
"whatsapp-chat",
"whatsapp-group",
"automation",
"multi-device"
],
"scripts": {
"test": "jest",
"prepare": "tsc",
"build": "tsc",
"build:all": "tsc && typedoc",
"build:docs": "typedoc",
"build:tsc": "tsc",
"example": "node --inspect -r ts-node/register Example/example.ts",
"gen:protobuf": "sh WAProto/GenerateStatics.sh",
"proto-extract": "yarn --cwd proto-extract start > wa-logs.txt",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
"lint:fix": "eslint . --fix --ext .js,.ts,.jsx,.tsx",
"watch": "npx tsc -w"
},
"author": "Adhiraj Singh",
"license": "MIT",
"repository": {
"url": "[email protected]:adiwajshing/baileys.git"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"audio-decode": "^2.2.0",
"axios": "^1.3.3",
"futoin-hkdf": "^1.5.1",
"libsignal": "file:../libsignal-node",
"music-metadata": "^7.13.4",
"node-cache": "^5.1.2",
"pino": "^8.10.0",
"protobufjs": "^7.2.2",
"ws": "^8.13.0"
},
"peerDependencies": {
"@adiwajshing/keyed-db": "^0.2.4",
"jimp": "^0.22.4",
"link-preview-js": "^3.0.0",
"qrcode-terminal": "^0.12.0",
"sharp": "^0.31.1"
},
"peerDependenciesMeta": {
"@adiwajshing/keyed-db": {
"optional": true
},
"jimp": {
"optional": true
},
"qrcode-terminal": {
"optional": true
},
"sharp": {
"optional": true
},
"link-preview-js": {
"optional": true
}
},
"files": [
"lib/*",
"WAProto/*",
"WASignalGroup/*.js"
],
"devDependencies": {
"@adiwajshing/eslint-config": "git+https://github.com/adiwajshing/eslint-config",
"@adiwajshing/keyed-db": "^0.2.4",
"@types/got": "^9.6.12",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.14.0",
"@types/sharp": "^0.31.1",
"@types/ws": "^8.5.4",
"eslint": "^8.34.0",
"jest": "^29.4.3",
"jimp": "^0.22.4",
"link-preview-js": "^3.0.4",
"pino-pretty": "^11.0.0",
"qrcode-terminal": "^0.12.0",
"sharp": "^0.31.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typedoc": "^0.23.25",
"typescript": "^4.9.5"
}
}