forked from omarcusdev/zap-gpt-free
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 KB
/
package.json
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
{
"name": "zap-gpt",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"config": "node ./setup.js",
"dev": "tsx watch src/index.ts",
"build": "tsup src",
"start": "npm run build && npx pm2 start dist/index.cjs --name zap-gpt --no-daemon",
"stop": "npx pm2 delete zap-gpt"
},
"keywords": [],
"author": {
"name": "Marcus Gonçalves",
"email": "marcusgoncalves067@gmail.com"
},
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@google/generative-ai": "^0.2.1",
"@wppconnect-team/wppconnect": "1.29.0",
"axios": "^1.6.5",
"csv-stringify": "^6.4.5",
"dotenv": "^16.3.2",
"inquirer": "^9.2.15",
"openai": "^4.24.2"
},
"devDependencies": {
"@types/node": "^20.11.8",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.0.0",
"pm2": "^5.3.1",
"prettier": "^3.2.4",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}