-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1004 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1004 Bytes
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
{
"name": "mtproto-nodejs-client",
"version": "8.0.1",
"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": "tsgo",
"watch": "tsgo --watch",
"test": "node --test lib/**/*.test.js",
"sync-schema": "node lib/sync-schema.js",
"generate": "node lib/generate.js"
},
"license": "GPL-3.0",
"dependencies": {
"@typescript/native-preview": "^7.0.0-dev.20251113.1",
"aes-js": "3.1.2",
"big-integer": "1.6.52",
"debug": "4.4.3",
"leemon": "6.2.0",
"lodash.debounce": "4.0.8",
"pako": "2.1.0",
"@types/aes-js": "^3.1.4",
"@types/debug": "^4.1.12",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^24.10.1",
"@types/pako": "^2.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fedyk/mtproto-nodejs-client.git"
}
}