-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.99 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "wpp-ai",
"version": "1.0.0",
"description": "A simple WhatsApp bot using WPPConnect",
"keywords": [
"typescript",
"template"
],
"author": {
"name": "Gabriel Maia",
"url": "https://github.com/gabrielmaialva33"
},
"repository": {
"type": "git",
"url": "https://github.com/gabrielmaialva33/wpp-ai.git"
},
"engines": {
"node": ">=20.15.1"
},
"private": true,
"main": "build/src/index.js",
"type": "module",
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"build": "rimraf build && tsc",
"start": "node build/src/index.js",
"start:dev": "node --loader ts-node/esm --experimental-loader ./src/index.ts",
"lint": "eslint . --ext=.ts",
"format": "prettier --write ."
},
"eslintConfig": {
"extends": "@adonisjs/eslint-config/app",
"rules": {
"prettier/prettier": "error",
"unicorn/filename-case": "off"
}
},
"prettier": "@adonisjs/prettier-config",
"devDependencies": {
"@adonisjs/eslint-config": "^1.3.0",
"@adonisjs/prettier-config": "^1.4.0",
"@adonisjs/tsconfig": "^1.4.0",
"@swc/core": "1.10.0",
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.1",
"@types/node-fetch": "^2.6.12",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-adonis": "^2.1.1",
"eslint-plugin-prettier": "^5.2.1",
"nodemon": "^3.1.7",
"openapi-types": "^12.1.3",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@wppconnect-team/wppconnect": "^1.35.1",
"dotenv": "^16.4.7",
"envalid": "^8.0.0",
"form-data": "^4.0.1",
"jimp": "^1.6.0",
"luxon": "^3.5.0",
"node-fetch": "^3.3.2",
"openai": "^4.76.0",
"reflect-metadata": "^0.2.2",
"replicate": "^1.0.1",
"source-map-support": "^0.5.21",
"telegra.ph": "^1.0.1",
"winston": "^3.17.0"
}
}