-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.11 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
{
"name": "@involvex/whatsapp-cli",
"version": "0.0.9",
"description": "A terminal WhatsApp client with Matrix-style Ink TUI, session persistence, and optional AI integration",
"keywords": [
"whatsapp",
"cli",
"whatsapp-web",
"whatsapp-web.js",
"whatsapp-cli",
"terminal",
"tui",
"ink"
],
"homepage": "https://github.com/involvex/whatsapp-cli#readme",
"bugs": {
"url": "https://github.com/involvex/whatsapp-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/involvex/whatsapp-cli.git"
},
"license": "MIT",
"author": {
"name": "involvex",
"url": "https://github.com/involvex"
},
"bin": {
"whatsapp-cli": "./dist/cli-wrapper.js"
},
"files": [
"dist/cli.js",
"dist/cli-wrapper.js",
"README.md",
"LICENSE",
"Security.md"
],
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "bun run --watch src/cli.tsx",
"build": "bun build src/cli.tsx --outdir dist --target node && node scripts/write-cli-wrapper.mjs",
"start": "node dist/cli-wrapper.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",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "1.3.14",
"@types/puppeteer": "^7.0.4",
"@types/qrcode-terminal": "^0.12.2",
"@types/react": "^19.2.17",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"prettier": "^3.9.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.1"
},
"dependencies": {
"dotenv": "^17.4.2",
"ink": "^7.1.0",
"ink-text-input": "^6.0.0",
"puppeteer": "^24.42.0",
"qrcode-terminal": "^0.12.0",
"react": "^19.2.7",
"whatsapp-web.js": "^1.34.7"
}
}