forked from alik0211/mtproto-core
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 924 Bytes
/
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
{
"name": "mtproto-nodejs-client",
"version": "7.2.2",
"type": "module",
"description": "Telegram API JS (MTProto) client library for Node.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "node --test",
"prepublishOnly": "tsc"
},
"license": "GPL-3.0",
"dependencies": {
"aes-js": "3.1.2",
"big-integer": "1.6.52",
"debug": "4.3.6",
"leemon": "6.2.0",
"lodash.debounce": "4.0.8",
"@types/aes-js": "^3.1.4",
"pako": "2.1.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^22.5.1",
"@types/pako": "^2.0.3",
"typescript": "^5.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fedyk/mtproto-nodejs-client.git"
}
}