common-tg-service 1.3.34 → 1.3.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +41 -38
- package/dist/tsconfig.tsbuildinfo +0 -1
package/package.json
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "common-tg-service",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.35",
|
|
4
4
|
"description": "Common Telegram service for NestJS applications",
|
|
5
5
|
"author": "",
|
|
6
|
-
"private": false,
|
|
7
6
|
"license": "MIT",
|
|
7
|
+
"engines": {
|
|
8
|
+
"node": ">=22.0.0"
|
|
9
|
+
},
|
|
10
|
+
"private": false,
|
|
11
|
+
"keywords": [
|
|
12
|
+
"nestjs",
|
|
13
|
+
"telegram",
|
|
14
|
+
"common",
|
|
15
|
+
"service"
|
|
16
|
+
],
|
|
8
17
|
"main": "dist/index.js",
|
|
9
18
|
"module": "dist/index.js",
|
|
10
19
|
"types": "dist/index.d.ts",
|
|
@@ -14,24 +23,17 @@
|
|
|
14
23
|
"LICENSE"
|
|
15
24
|
],
|
|
16
25
|
"sideEffects": false,
|
|
17
|
-
"keywords": [
|
|
18
|
-
"nestjs",
|
|
19
|
-
"telegram",
|
|
20
|
-
"common",
|
|
21
|
-
"service"
|
|
22
|
-
],
|
|
23
26
|
"publishConfig": {
|
|
24
27
|
"access": "public"
|
|
25
28
|
},
|
|
26
29
|
"scripts": {
|
|
27
|
-
"prebuild": "
|
|
28
|
-
"build": "nest build
|
|
29
|
-
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
30
|
+
"prebuild": "rimraf dist",
|
|
31
|
+
"build": "nest build",
|
|
30
32
|
"prepublishOnly": "npm run build",
|
|
31
33
|
"start": "cross-env nest start",
|
|
32
|
-
"start:prod": "cross-env node dist/main",
|
|
33
34
|
"start:dev": "nest start --watch",
|
|
34
35
|
"start:debug": "nest start --debug --watch",
|
|
36
|
+
"start:prod": "node dist/main",
|
|
35
37
|
"start:webpack": "node dist/index.js",
|
|
36
38
|
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
37
39
|
"webpack-dev": "webpack --watch --mode development",
|
|
@@ -66,41 +68,42 @@
|
|
|
66
68
|
"telegram": "^2.26.22"
|
|
67
69
|
},
|
|
68
70
|
"devDependencies": {
|
|
69
|
-
"@nestjs/cli": "11.0.10",
|
|
70
|
-
"@nestjs/schematics": "11.0.7",
|
|
71
|
-
"@nestjs/testing": "11.1.6",
|
|
72
|
-
"@types/express": "5.0.3",
|
|
73
|
-
"@types/imap": "0.8.42",
|
|
74
|
-
"@types/jest": "30.0.0",
|
|
71
|
+
"@nestjs/cli": "^11.0.10",
|
|
72
|
+
"@nestjs/schematics": "^11.0.7",
|
|
73
|
+
"@nestjs/testing": "^11.1.6",
|
|
74
|
+
"@types/express": "^5.0.3",
|
|
75
|
+
"@types/imap": "^0.8.42",
|
|
76
|
+
"@types/jest": "^30.0.0",
|
|
75
77
|
"@types/multer": "^2.0.0",
|
|
76
|
-
"@types/node": "24.5.2",
|
|
77
|
-
"@types/supertest": "6.0.3",
|
|
78
|
-
"@typescript-eslint/eslint-plugin": "8.44.1",
|
|
79
|
-
"@typescript-eslint/parser": "8.44.1",
|
|
78
|
+
"@types/node": "^24.5.2",
|
|
79
|
+
"@types/supertest": "^6.0.3",
|
|
80
|
+
"@typescript-eslint/eslint-plugin": "^8.44.1",
|
|
81
|
+
"@typescript-eslint/parser": "^8.44.1",
|
|
80
82
|
"cross-env": "^10.0.0",
|
|
81
|
-
"eslint": "9.36.0",
|
|
82
|
-
"eslint-config-prettier": "10.1.8",
|
|
83
|
-
"eslint-plugin-prettier": "5.5.4",
|
|
84
|
-
"jest": "30.1.3",
|
|
85
|
-
"prettier": "3.6.2",
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"ts-
|
|
83
|
+
"eslint": "^9.36.0",
|
|
84
|
+
"eslint-config-prettier": "^10.1.8",
|
|
85
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
86
|
+
"jest": "^30.1.3",
|
|
87
|
+
"prettier": "^3.6.2",
|
|
88
|
+
"rimraf": "^6.0.1",
|
|
89
|
+
"source-map-support": "^0.5.21",
|
|
90
|
+
"supertest": "^7.1.4",
|
|
91
|
+
"ts-jest": "^29.4.4",
|
|
92
|
+
"ts-loader": "^9.5.4",
|
|
90
93
|
"ts-node": "^10.9.2",
|
|
91
|
-
"tsconfig-paths": "4.2.0",
|
|
94
|
+
"tsconfig-paths": "^4.2.0",
|
|
92
95
|
"typescript": "^5.9.2",
|
|
93
|
-
"webpack": "5.101.3",
|
|
94
|
-
"webpack-cli": "6.0.1",
|
|
95
|
-
"webpack-node-externals": "3.0.0"
|
|
96
|
+
"webpack": "^5.101.3",
|
|
97
|
+
"webpack-cli": "^6.0.1",
|
|
98
|
+
"webpack-node-externals": "^3.0.0"
|
|
96
99
|
},
|
|
97
100
|
"jest": {
|
|
101
|
+
"rootDir": "src",
|
|
98
102
|
"moduleFileExtensions": [
|
|
103
|
+
"ts",
|
|
99
104
|
"js",
|
|
100
|
-
"json"
|
|
101
|
-
"ts"
|
|
105
|
+
"json"
|
|
102
106
|
],
|
|
103
|
-
"rootDir": "src",
|
|
104
107
|
"testRegex": ".*\\.spec\\.ts$",
|
|
105
108
|
"transform": {
|
|
106
109
|
"^.+\\.(t|j)s$": "ts-jest"
|