-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.55 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.55 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
{
"name": "@involvex/whatsapp-cli",
"version": "0.0.6",
"description": "A minimal terminal-based WhatsApp client with AI integration",
"keyword": [
"whatsapp",
"cli",
"whatsapp-web",
"whatsapp-web.js",
"whatsapp-cli"
],
"author": {
"name": "involvex"
},
"bin": {
"whatsapp-cli": "./dist/cli-wrapper.js"
},
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"private": false,
"scripts": {
"dev": "bun run --watch src/cli.tsx",
"build": "bun build src/cli.tsx --outdir dist --target node",
"start": "bun run dist/cli.js",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ignore-pattern .wwebjs_auth_session --ignore-pattern dist",
"lint:fix": "eslint . --fix --ignore-pattern .wwebjs_auth_session --ignore-pattern dist",
"prebuild": "bun run format && bun run typecheck && bun run lint:fix"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "1.3.12",
"eslint": "^10.2.0",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"react-devtools-core": "^7.0.1",
"typescript-eslint": "^8.58.2"
},
"peerDependencies": {
"typescript": "^6.0.3"
},
"dependencies": {
"@types/puppeteer": "^7.0.4",
"@types/qrcode-terminal": "^0.12.2",
"@types/react": "^19.2.14",
"chalk": "^5.6.2",
"dotenv": "^17.4.2",
"ink": "^7.0.1",
"ink-ansi": "^1.0.0",
"ink-text-input": "^6.0.0",
"puppeteer": "^24.41.0",
"qrcode-terminal": "^0.12.0",
"react": "^19.2.5",
"whatsapp-web.js": "^1.34.6"
}
}