-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.7 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
{
"name": "owpenwork",
"version": "0.1.16",
"description": "WhatsApp bridge for a running OpenCode server",
"private": false,
"type": "module",
"bin": {
"owpenwork": "dist/cli.js",
"owpenbot": "dist/cli.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/different-ai/owpenbot.git"
},
"keywords": [
"opencode",
"whatsapp",
"bridge",
"bot"
],
"files": [
"dist",
"README.md",
".env.example",
"install.sh"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/cli.js start",
"whatsapp:login": "node dist/cli.js whatsapp login",
"pairing-code": "node dist/cli.js pairing-code",
"typecheck": "tsc -p tsconfig.json --noEmit",
"setup": "node scripts/setup.mjs",
"test:unit": "pnpm build && node --test test/*.test.js",
"test:smoke": "node scripts/smoke.mjs",
"test:cli": "pnpm build && node scripts/test-cli.mjs",
"test:npx": "node scripts/test-npx.mjs"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@opencode-ai/sdk": "^1.1.19",
"@whiskeysockets/baileys": "7.0.0-rc.9",
"better-sqlite3": "^11.7.0",
"commander": "^12.1.0",
"dotenv": "^16.4.7",
"grammy": "^1.39.3",
"pino": "^9.6.0",
"qrcode-terminal": "^0.12.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.2",
"@types/qrcode-terminal": "^0.12.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@whiskeysockets/baileys",
"better-sqlite3",
"esbuild",
"protobufjs",
"sharp"
]
},
"packageManager": "pnpm@10.27.0"
}