-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.63 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.63 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
{
"name": "@fazer-ai/baileys-api",
"version": "1.0.0",
"description": "Baileys API for WhatsApp.",
"author": "gabrieljablonski",
"repository": {
"type": "git",
"url": "https://github.com/fazer-ai/baileys-api.git"
},
"license": "MIT",
"module": "src/index.ts",
"scripts": {
"dev": "bun --watch src/index.ts",
"test": "bun test --coverage",
"test-watch": "bun test --watch",
"start": "bun src/index.ts",
"lint": "bun biome check",
"format": "bun biome check --write",
"manage-api-keys": "LOG_LEVEL=warn bun scripts/manage-api-keys.ts",
"build-swagger": "LOG_LEVEL=warn bun scripts/build-swagger.ts",
"build-check": "bunx tsc --noEmit",
"check": "bun lint && bun build-check && bun test"
},
"dependencies": {
"@elysiajs/cors": "^1.4.2",
"@elysiajs/swagger": "^1.3.1",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@hapi/boom": "^10.0.1",
"@whiskeysockets/baileys": "7.0.0-rc11",
"audio-decode": "^2.2.3",
"elysia": "^1.4.28",
"fluent-ffmpeg": "^2.1.3",
"link-preview-js": "^4.0.1",
"lru-cache": "^11.3.6",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"pino-roll": "^4.0.0",
"qrcode": "^1.5.4",
"redis": "^5.12.1",
"sharp": "^0.34.5"
},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@stacksjs/gitlint": "^0.1.5",
"@types/fluent-ffmpeg": "^2.1.28",
"@types/qrcode": "^1.5.6",
"bun-git-hooks": "^0.3.1",
"bun-types": "latest",
"pino-caller": "^4.0.0",
"typescript": "^6.0.3"
},
"patchedDependencies": {
"@whiskeysockets/baileys@7.0.0-rc11": "patches/@whiskeysockets%2Fbaileys@7.0.0-rc11.patch"
}
}