-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.58 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.58 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
{
"name": "pastorini-api",
"type": "module",
"version": "1.3.0",
"description": "Pastorini API - WhatsApp Multi-Instance API",
"keywords": [
"whatsapp",
"automation"
],
"homepage": "https://github.com/pastorini-api/pastorini-api",
"repository": {
"url": "https://github.com/pastorini-api/pastorini-api.git"
},
"license": "Proprietary",
"author": "Pastorini API Team",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"WAProto/**/*",
"engine-requirements.js"
],
"scripts": {
"start": "tsx server.ts",
"server": "tsx server.ts"
},
"dependencies": {
"@cacheable/node-cache": "^1.4.0",
"@hapi/boom": "^9.1.3",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/qrcode": "^1.5.6",
"async-mutex": "^0.5.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"ioredis": "^5.4.1",
"libsignal": "git+https://github.com/whiskeysockets/libsignal-node",
"lru-cache": "^11.1.0",
"music-metadata": "^11.7.0",
"p-queue": "^9.0.0",
"pg": "^8.13.1",
"pino": "^9.6",
"protobufjs": "^7.2.4",
"qrcode": "^1.5.4",
"stripe": "^20.0.0",
"ws": "^8.13.0"
},
"peerDependencies": {
"audio-decode": "^2.1.3",
"jimp": "^1.6.0",
"link-preview-js": "^3.0.0",
"sharp": "*"
},
"peerDependenciesMeta": {
"audio-decode": {
"optional": true
},
"jimp": {
"optional": true
},
"link-preview-js": {
"optional": true
}
},
"packageManager": "yarn@4.9.2",
"engines": {
"node": ">=20.0.0"
}
}