-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
133 lines (133 loc) · 3.42 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "zaileys",
"description": "Zaileys - Simplified WhatsApp Node.js TypeScript/JavaScript API",
"version": "4.8.5",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"author": "zaadevofc",
"homepage": "https://zeative.github.io/zaileys/",
"repository": {
"url": "git+https://github.com/zeative/zaileys.git"
},
"bugs": {
"url": "https://github.com/zeative/zaileys/issues"
},
"keywords": [
"baileys",
"zaileys",
"whatsapp",
"whatsapp-api",
"whatsapp-web",
"whatsapp-bot",
"multi-device",
"simplified",
"automation",
"modern-library",
"nodejs",
"javascript-typescript"
],
"scripts": {
"dev": "tsx --watch examples/quickstart-connect.ts",
"build": "tsup && tsc -p tsconfig.build.json --emitDeclarationOnly --declarationMap false",
"prepublishOnly": "pnpm run build",
"release": "node scripts/release.mjs",
"typecheck": "tsc --noEmit",
"typecheck:audit": "tsx scripts/audit-tsgo-compat.ts",
"audit:comments": "tsx scripts/audit-comments.ts",
"audit:any": "tsx scripts/audit-no-any.ts",
"test": "vitest run",
"test:watch": "vitest",
"smoke:baileys": "tsx scripts/smoke-baileys.mts",
"docs:dev": "npm --prefix docs run dev",
"docs:build": "npm --prefix docs run build",
"docs:deploy": "bash docs/deploy.sh",
"skill:sync": "node scripts/sync-skill.mjs",
"changeset": "changeset",
"release:version": "changeset version && pnpm install",
"release:publish": "pnpm run build && changeset publish",
"prepare": "husky",
"size": "size-limit"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@hono/node-server": "^2.0.8",
"@size-limit/file": "^12.1.0",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^24.10.1",
"@types/pg": "^8.20.0",
"@types/qrcode-terminal": "^0.12.2",
"@vitest/coverage-v8": "4.1.7",
"better-sqlite3": "^11.10.0",
"express": "^5.2.1",
"hono": "^4.12.30",
"husky": "^9.1.7",
"pg": "8.21.0",
"pg-mem": "^3.0.14",
"redis": "^4.7.0",
"size-limit": "^12.1.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "~7.0.2",
"vitest": "^4.1.7"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^2.1.2",
"async-mutex": "^0.5.0",
"audio-decode": "^2.2.3",
"baileys": "^7.0.0-rc13",
"file-type": "^21.1.1",
"jimp": "^1.6.0",
"lru-cache": "^11.2.7",
"nanospinner": "^1.2.2",
"node-webpmux": "^3.2.1",
"pino": "10.3.1",
"qrcode-terminal": "0.12.0",
"valibot": "^1.2.0"
},
"packageManager": "pnpm@10.24.0",
"engines": {
"node": ">=20.0.0"
},
"peerDependencies": {
"better-sqlite3": "^11.0.0",
"convex": "^1.0.0",
"pg": "^8.11.0",
"redis": "^4.7.0"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
},
"convex": {
"optional": true
},
"redis": {
"optional": true
},
"pg": {
"optional": true
}
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
}
}