-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 KB
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
{
"name": "protov",
"version": "0.0.1-alpha-4",
"description": "JavaScript MTProto implementation.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && tsc",
"dev": "ts-node-dev --respawn ./src/index.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TelegramV/ProtoV.git"
},
"keywords": [
"telegram",
"mtproto"
],
"author": "kohutd",
"license": "MIT",
"bugs": {
"url": "https://github.com/TelegramV/ProtoV/issues"
},
"homepage": "https://github.com/TelegramV/ProtoV#readme",
"devDependencies": {
"@types/node": "^14.6.4",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "^3.7.5",
"protov-tl-schema": "^2.113.1"
},
"dependencies": {
"@cryptography/aes": "^0.1.1",
"@types/pako": "^1.0.1",
"@types/ws": "^7.2.6",
"big-integer": "^1.6.48",
"buffer": "^5.6.0",
"js-sha256": "^0.9.0",
"pako": "^1.0.11",
"protov-tl": "^0.5.3",
"rusha": "^0.8.13",
"websocket": "^1.0.32",
"ws": "^7.3.1"
}
}