-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "rambogpt",
"version": "0.0.2",
"engines": {
"node": "18.x"
},
"description": "Your ChatGPT wrapper as a Telegram Bot",
"main": "build/index.js",
"scripts": {
"postinstall": "npm run build",
"build": "tsc",
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"start:dev": "ts-node -r tsconfig-paths/register src/index.ts | pino-pretty",
"dev": "tsc --watch",
"lint": "eslint ./src",
"format": "prettier --write './src/**/*.{js,jsx,ts,tsx,json}'",
"test": "jest --detectOpenHandles",
"ts-node": "ts-node"
},
"keywords": [
"ChatGPT",
"AI",
"Telegram",
"bot"
],
"repository": {
"type": "git",
"url": "https://github.com/demian85/rambogpt.git"
},
"author": "Demian Rodriguez",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.15.11",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"dotenv": "^16.0.3",
"eslint": "^8.38.0",
"pino-pretty": "^10.0.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"dependencies": {
"ffmpeg-static": "^5.1.0",
"openai": "^3.2.1",
"pino": "^8.11.0",
"sharp": "^0.32.0",
"telegraf": "^4.12.2",
"unfluff": "^3.2.0"
}
}