-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.26 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
{
"name": "messistant",
"version": "0.1.0",
"private": true,
"description": "A self-hosted, assist-based WhatsApp companion.",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "node --env-file=.env ./node_modules/tsx/dist/cli.mjs watch src/main.ts",
"postinstall": "node scripts/build-better-sqlite3.mjs",
"start": "node dist/main.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/formbody": "^8.0.2",
"@fastify/helmet": "^13.0.2",
"@fastify/rate-limit": "^10.3.0",
"@fastify/static": "^10.1.2",
"@fontsource-variable/jetbrains-mono": "^5.3.0",
"better-sqlite3": "^13.0.1",
"fastify": "^5.6.2",
"luxon": "^3.7.2",
"openai": "^6.16.0",
"pino": "^9.14.0",
"qrcode": "^1.5.4",
"whatsapp-web.js": "^1.34.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/luxon": "^3.7.1",
"@types/node": "^24.10.1",
"@types/qrcode": "^1.5.5",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
},
"overrides": {
"brace-expansion": "5.0.8"
}
}