-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.65 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
{
"name": "ai_bot",
"version": "1.3.2",
"private": true,
"main": "src/app.ts",
"type": "module",
"scripts": {
"start": "tsc && node dist/app.js",
"dev": "nodemon dist/app.js",
"clean": "rimraf dist",
"build": "tsc",
"build:watch": "tsc -w",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"tg:session": "tsc && node dist/scripts/stringSession.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@iamtraction/google-translate": "^2.0.1",
"@xenova/transformers": "^2.17.2",
"dotenv": "^16.4.5",
"fluent-ffmpeg": "^2.1.3",
"input": "^1.0.1",
"pg": "^8.12.0",
"reflect-metadata": "^0.2.2",
"telegraf": "^4.16.3",
"telegram": "^2.22.2",
"typeorm": "^0.3.20",
"wavefile": "^11.0.0"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.24",
"@types/node": "^20.14.8",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.57.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"typescript": "^5.5.2"
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-floating-promises": "error"
}
},
"engines": {
"node": ">=20.9.0",
"npm": ">=10.1.0"
}
}