-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
44 lines (44 loc) · 1.14 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
{
"author": "bobslavtriev",
"name": "mysql-baileys",
"version": "1.5.2",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"description": "Implementation of MySQL in Baileys.",
"homepage": "https://github.com/bobslavtriev/mysql-baileys",
"license": "MIT",
"files": [
"lib/*"
],
"scripts": {
"release": "release-it",
"build": "tsc",
"prepack": "tsc",
"prepare": "tsc",
"build:tsc": "tsc",
"build:docs": "typedoc",
"build:all": "tsc && typedoc",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --fix --ext .ts"
},
"repository": {
"url": "git+ssh://[email protected]/bobslavtriev/mysql-baileys.git"
},
"dependencies": {
"libsignal": "github:adiwajshing/libsignal-node",
"mysql2": "^3.3.5"
},
"devDependencies": {
"@adiwajshing/eslint-config": "github:adiwajshing/eslint-config",
"@types/node": "^16.18.69",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"@whiskeysockets/baileys": "github:WhiskeySockets/Baileys",
"eslint": "^8.56.0",
"release-it": "^15.10.3",
"typedoc": "^0.24.7",
"ts-node": "^10.8.1",
"typescript": "^4.6.4"
}
}