-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.01 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
{
"name": "@fer2809fl/baileys",
"type": "module",
"version": "7.0.0-rc13",
"description": "A WebSockets library for interacting with WhatsApp Web",
"keywords": [
"whatsapp",
"automation"
],
"homepage": "https://github.com/this-xys/bails/",
"repository": {
"url": "git+ssh://git@github.com/this-xys/bails.git"
},
"license": "MIT",
"author": "ASTA-BOTS",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"WAProto/**/*",
"engine-requirements.js"
],
"scripts": {
"build": "tsc -P tsconfig.build.json && tsc-esm-fix --tsconfig=tsconfig.build.json --ext=.js",
"gen:protobuf": "sh WAProto/GenerateStatics.sh",
"prepack": "npm run build",
"prepare": "npm run build",
"preinstall": "node ./engine-requirements.js"
},
"dependencies": {
"@adiwajshing/keyed-db": "^0.2.4",
"@cacheable/node-cache": "^1.4.0",
"@hapi/boom": "^9.1.3",
"async-mutex": "^0.5.0",
"fflate": "^0.8.3",
"libsignal": "git+https://github.com/this-xys/libsignal-node.git",
"lru-cache": "^11.1.0",
"music-metadata": "^11.12.3",
"p-queue": "^9.0.0",
"pino": "^9.6",
"protobufjs": "^7.5.6",
"whatsapp-rust-bridge": "0.5.4",
"ws": "^8.13.0"
},
"devDependencies": {
"@napi-rs/image": "^1.14.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.9.0",
"@types/ws": "^8.0.0",
"jimp": "^1.6.1",
"link-preview-js": "^3.0.0",
"tsc-esm-fix": "^3.1.2",
"typescript": "^5.8.2"
},
"peerDependencies": {
"@napi-rs/image": "^1.12.0",
"audio-decode": "^2.1.3",
"better-sqlite3": "^11.0.0",
"jimp": "^1.6.1",
"link-preview-js": "^3.0.0",
"sharp": "*"
},
"peerDependenciesMeta": {
"@napi-rs/image": {
"optional": true
},
"audio-decode": {
"optional": true
},
"better-sqlite3": {
"optional": true
},
"jimp": {
"optional": true
},
"link-preview-js": {
"optional": true
}
},
"engines": {
"node": ">=20.0.0"
}
}