-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.08 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.08 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
{
"name": "dconco-ai",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc && npx tsc-alias && cp -r src/cache dist/",
"build:check": "npx tsc --noEmit",
"start": "node dist/index.js",
"start:bot": "node dist/dconco-ai/index.js",
"dev": "ts-node-dev --respawn --transpile-only false -r tsconfig-paths/register src/index.ts",
"startBot": "ts-node-dev --respawn --transpile-only false -r tsconfig-paths/register src/dconco-ai/index.ts",
"updateProfile": "ts-node-dev -r tsconfig-paths/register src/utils/updateProfile.ts",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist"
},
"author": "dconco",
"dependencies": {
"@google/generative-ai": "^0.24.1",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"mongoose": "^8.18.1",
"puppeteer": "^24.22.0",
"qrcode-terminal": "^0.12.0",
"weird-fonts": "^0.1.2",
"whatsapp-web.js": "^1.34.1"
},
"devDependencies": {
"@types/express": "^4.17.23",
"@types/node": "^20.19.13",
"@types/qrcode-terminal": "^0.12.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.2"
}
}