-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.3 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "liqueur",
"version": "1.2.0",
"description": "A rich-featured and flexible command framework for building WhatsApp bot with baileys inspired by @sapphire framework.",
"keywords": [
"framework",
"whatsapp",
"whatsapp-bot",
"kakushin",
"sapphire",
"baileys",
"whatsapp-api"
],
"homepage": "https://github.com/kakushindev/liqueur#readme",
"bugs": {
"url": "https://github.com/kakushindev/liqueur/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kakushindev/liqueur.git"
},
"license": "AGPL-3.0",
"author": "Kakushin Devs <hello@kakushin.dev>",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**",
"LICENSE",
"README.md",
"package.json",
"pnpm-lock.yaml"
],
"scripts": {
"build": "pnpm run lint && pnpm run compile",
"compile": "tsc --build tsconfig.json",
"lint": "eslint . --ignore-path .gitignore --ext .ts",
"lint:fix": "pnpm run lint --fix",
"release": "pnpm publish --access public --no-git-checks"
},
"eslintConfig": {
"extends": "@hazmi35/eslint-config/typescript",
"ignorePatterns": "dist/*"
},
"dependencies": {
"@discordjs/collection": "^1.5.3",
"@hapi/boom": "^10.0.1",
"@nezuchan/decorators": "^0.1.0",
"@sapphire/lexure": "^1.1.7",
"@sapphire/pieces": "^4.2.2",
"@sapphire/result": "^2.6.6",
"@sapphire/utilities": "^3.15.3",
"@whiskeysockets/baileys": "^6.6.0",
"pino": "^8.18.0",
"pino-loki": "^2.2.1",
"pino-pretty": "^10.3.1",
"qrcode-terminal": "^0.12.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@hazmi35/eslint-config": "^11.0.0",
"@types/node": "^18.19.14",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"rimraf": "^5.0.5",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.12.1",
"npm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.1"
}