-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "mrx-baileys-store",
"version": "3.0.0",
"description": "Minimal Baileys data storage for your favorite DBMS built with Prisma",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/Marcoant007/baileys-store.git",
"author": "Marcoant (https://github.com/Marcoant007) ",
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier . --write"
},
"devDependencies": {
"@prisma/client": "^6.2.1",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@whiskeysockets/baileys": "^6.7.9",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.8.0",
"prisma": "^6.2.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"commit-and-tag-version": "^11.3.0",
"tiny-invariant": "^1.3.1"
},
"peerDependencies": {
"@prisma/client": "^6.2.1",
"@whiskeysockets/baileys": ">=6.2.1 <6.8.0"
},
"files": [
"dist/",
"prisma/schema.prisma",
".env.example"
]
}