This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
88 lines (88 loc) · 2.78 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
79
80
81
82
83
84
85
86
87
88
{
"name": "bajigur",
"version": "1.5.5",
"description": "A simple and easy-to-use WhatsApp bot project, written in TypeScript.",
"license": "AGPL-3.0",
"author": "Stegripe Development <support@stegripe.org>",
"repository": {
"type": "git",
"url": "git+https://github.com/stegripe/bajigur.git"
},
"bugs": {
"url": "https://github.com/stegripe/bajigur/issues"
},
"homepage": "https://github.com/stegripe/bajigur#readme",
"main": "dist",
"type": "module",
"scripts": {
"build": "rimraf dist && npm run lint && npm run compile",
"compile": "swc src -d dist --strip-leading-paths",
"compile:ts": "tsc --build tsconfig.json",
"lint": "pnpm pretty && eslint src --cache --cache-file .eslintcache --ext .ts",
"lint:fix": "pnpm pretty:write && eslint src --cache --cache-file .eslintcache --ext .ts --fix",
"pretty": "prettier --check src",
"pretty:write": "prettier --write src",
"start": "node --env-file=.env .",
"start:dev": "rimraf dist && set NODE_ENV=development && tsc-watch --onSuccess \"pnpm start\""
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"imports": {
"#bajigur/*": "./dist/*"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 100,
"tabWidth": 4,
"trailingComma": "none"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"@clytage/eslint-config/typescript",
"prettier"
],
"rules": {
"class-methods-use-this": 0
}
},
"dependencies": {
"@discordjs/collection": "2.0.0",
"@hapi/boom": "^10.0.1",
"@sapphire/utilities": "^3.15.3",
"@whiskeysockets/baileys": "^6.6.0",
"ffmpeg-static": "^5.2.0",
"pino": "9.0.0",
"pino-pretty": "^11.0.0",
"qrcode-terminal": "^0.12.0",
"tslib": "2.6.2",
"wa-sticker": "^1.0.14"
},
"devDependencies": {
"@clytage/eslint-config": "^3.0.1",
"@swc/cli": "0.3.12",
"@swc/core": "^1.5.0",
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.2.5",
"rimraf": "6.0.0",
"ts-node": "10.9.2",
"tsc-watch": "^6.2.0",
"typescript": "5.5.4"
}
}