-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 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
{
"name": "protov-tl",
"version": "0.5.3",
"description": "TypeLanguage serialization and deserialization.",
"author": "Davyd Kohut",
"license": "GPL-3.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"type-language",
"typelanguage",
"telegram",
"mtproto"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TelegramV/TypeLanguage"
},
"bugs": {
"url": "https://github.com/TelegramV/TypeLanguage/issues"
},
"scripts": {
"build": "rm -rf lib && tsc",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@telegramv/schema": "^2.108.2",
"@types/jest": "^25.1.4",
"@types/pako": "^1.0.1",
"jest": "^25.1.0",
"pako": "^1.0.11",
"ts-jest": "^25.2.1",
"typescript": "^3.7.5",
"crc-32": "^1.2.0"
},
"dependencies": {
"buffer": "^5.5.0"
}
}