-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "gpt-advisor-wabot",
"version": "1.0.0",
"description": "Bot para WhatsApp que usa a API Oficial do ChatGPT no Projeto X da codeBuddy",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup src",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misterioso013/gpt-advisor-wabot.git"
},
"keywords": [
"ChatGPT",
"typescript",
"WhatsApp"
],
"author": "Rosiel Victor",
"license": "MIT",
"bugs": {
"url": "https://github.com/misterioso013/gpt-advisor-wabot/issues"
},
"homepage": "https://github.com/misterioso013/gpt-advisor-wabot#readme",
"devDependencies": {
"@types/node": "^18.15.10",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"tsup": "^7.0.0",
"tsx": "^3.12.6",
"typescript": "^5.0.2"
},
"dependencies": {
"@wppconnect-team/wppconnect": "^1.23.1",
"chatgpt": "^5.1.3",
"dotenv": "^16.0.3"
}
}