-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 873 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 873 Bytes
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
{
"name": "myagent",
"version": "1.0.0",
"description": "ARIA — Autonomous Reasoning & Insight Agent",
"type": "module",
"scripts": {
"start": "tsx backend/index.ts",
"dev": "tsx watch backend/index.ts",
"lint": "eslint backend/",
"lint:fix": "eslint backend/ --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@whiskeysockets/baileys": "^7.0.0-rc.9",
"dotenv": "^16.4.7",
"googleapis": "^171.4.0",
"patchright": "^1.58.2",
"pino": "^9.6.0",
"qrcode-terminal": "^0.12.0",
"rss-parser": "^3.13.0",
"twilio": "^5.4.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.13.4",
"eslint": "^10.1.0",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.2"
}
}