-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.66 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "gampang",
"version": "2.3.5",
"description": "\"Gampang\" is a whatsapp bot framework. Based on @adiwajshing/baileys",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"format": "prettier . --write",
"lint": "eslint \"src/**/*.{ts,js,d.ts}\" --fix",
"build": "tsup",
"test": "npm run build && nodemon ./examples/normal.js",
"clean": "rimraf dist",
"prepare": "husky install",
"docs": "rimraf docs && typedoc --options typedoc.json"
},
"keywords": [
"baileys",
"gampang",
"whatsapp-bot"
],
"author": "Hanif Dwy Putra S <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"@types/node": "^18.19.59",
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"eslint": "^8.57.1",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.10.0",
"husky": "^8.0.3",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"rimraf": "^6.0.1",
"sharp": "^0.33.5",
"tsup": "^6.7.0",
"typedoc": "^0.23.28",
"typedoc-plugin-mdn-links": "^2.0.2",
"typescript": "4.8.4"
},
"dependencies": {
"@adiwajshing/baileys": "npm:@whiskeysockets/baileys@^6.7.9",
"@adiwajshing/keyed-db": "^0.2.4",
"@sapphire/async-queue": "^1.5.3",
"@sapphire/lexure": "^1.1.7",
"long": "^5.2.3",
"pino": "^8.21.0",
"pino-pretty": "^9.4.1",
"qrcode": "^1.5.4"
},
"nodemonConfig": {
"ignore": [
"./examples/sessions/*"
]
},
"repository": {
"url": "https://github.com/hansputera/gampang.git"
},
"engines": {
"node": ">=12.x"
}
}