-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.47 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.47 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
{
"name": "pepesan",
"version": "3.4.9",
"description": "Simple automatic WhatsApp message responder",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "tsc",
"watch": "tsc --watch",
"example": "tsc && nodemon ./example/index.js",
"test": "tsc && jest",
"watch-test": "tsc && jest --watch-all",
"dev": "nodemon ./src/index.ts",
"debug": "nodemon --exec \"node --inspect-brk=0.0.0.0:9229 --require ts-node/register ./example/index.js\""
},
"author": "mqad21",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/mqad21/pepesan"
},
"homepage": "https://github.com/mqad21/pepesan",
"devDependencies": {
"@jest/globals": "^29.2.2",
"@types/express": "^4.17.17",
"@types/qrcode": "^1.5.2",
"@types/ws": "^8.5.3",
"jest": "^29.2.2",
"jest-circus": "^29.3.1",
"nodemon": "^3.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@hapi/boom": "^10.0.0",
"@whiskeysockets/baileys": "^6.7.13",
"axios": "^1.1.3",
"buffer-to-data-url": "^1.0.0",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"jimp": "^0.16.13",
"qrcode": "^1.5.3",
"qrcode-terminal": "^0.12.0",
"sequelize": "^6.25.3",
"sqlite3": "^5.1.2"
},
"nodemonConfig": {
"ignore": [
"./example/session/*",
"./example/state/*"
]
},
"files": [
"dist/*"
]
}