-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 899 Bytes
/
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
{
"name": "whatsapp-to-carddav",
"version": "0.1.0",
"description": "Sync WhatsApp profile pictures to a Nextcloud, Google Contacts, iCloud, etc.",
"author": "Marc N.",
"license": "MIT",
"keywords": [
"whatsapp",
"carddav",
"sync",
"photos"
],
"type": "module",
"main": "index.js",
"scripts": {
"start": "node -r dotenv/config src/index.js",
"development": "nodemon -r dotenv/config src/index.js",
"test": "jest"
},
"dependencies": {
"baileys": "^6.7.5",
"dav": "^1.8.0",
"dotenv": "^16.0.0",
"lodash.chunk": "^4.2.0",
"node-fetch": "^3.2.3",
"qrcode-terminal": "^0.12.0",
"unique-by": "^1.0.0",
"vcf": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"nodemon": "^3.1.3",
"prettier": "^3.3.2"
}
}