forked from muhammedaksam/waha-tui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.71 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.71 KB
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
89
90
91
92
93
94
95
96
97
{
"name": "@muhammedaksam/waha-tui",
"version": "1.5.16",
"description": "TUI client for WhatsApp using WAHA (WhatsApp HTTP API) - manage chats, send messages, and more from your terminal",
"type": "module",
"bin": {
"waha-tui": "./dist/index.js"
},
"files": [
"dist"
],
"author": "Muhammed Mustafa AKŞAM <info@muhammedaksam.com.tr> (https://github.com/muhammedaksam)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/muhammedaksam/waha-tui.git"
},
"bugs": {
"url": "https://github.com/muhammedaksam/waha-tui/issues"
},
"homepage": "https://github.com/muhammedaksam/waha-tui#readme",
"keywords": [
"whatsapp",
"waha",
"tui",
"opentui",
"cli",
"terminal",
"chat",
"messaging"
],
"scripts": {
"dev": "bun --watch src/index.ts",
"dev:debug": "bun dev --debug",
"build": "bun build src/index.ts --outdir dist --target bun --external '@opentui/*' --external 'node-notifier' --external 'qrcode'",
"prepublishOnly": "bun run build",
"typecheck": "bun x tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"check": "bun typecheck && bun lint && bun format:check && bun test",
"fix": "bun lint:fix && bun format",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"start": "bun src/index.ts",
"link:waha-node": "bash scripts/link-waha-node.sh",
"unlink:waha-node": "bash scripts/unlink-waha-node.sh",
"migration:create": "bun run scripts/create-migration.ts",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@eslint/js": "^10.0.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/bun": "latest",
"@types/node": "^25.3.3",
"@types/node-notifier": "^8.0.5",
"@types/qrcode": "^1.5.6",
"eslint": "^10.0.2",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lint-staged": "^16.3.1",
"prettier": "^3.8.1",
"typescript-eslint": "^8.56.1"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@muhammedaksam/waha-node": "^2026.2.2",
"@opentui-ui/dialog": "^0.1.2",
"@opentui-ui/toast": "^0.0.5",
"@opentui/core": "^0.1.84",
"node-notifier": "^10.0.1",
"qrcode": "^1.5.4"
},
"engines": {
"bun": ">=1.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}