forked from freegram-im/mtcute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "mtcute",
"private": true,
"version": "1.0.0",
"description": "Type-safe library for MTProto (Telegram API) for browser and NodeJS",
"license": "LGPL-3.0",
"author": "Alisa Sireneva <me@tei.su>",
"scripts": {
"test": "lerna run test",
"build": "lerna run build",
"lint": "eslint packages/**/*.ts",
"format": "prettier --write packages/**/*.ts",
"publish-all": "node scripts/publish.js all"
},
"dependencies": {
"node-gyp": "^8.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/debug": "^4.1.5",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/node-forge": "^0.9.7",
"@types/node-fetch": "^2.5.10",
"@types/pako": "^1.0.1",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.5",
"eager-async-pool": "^1.0.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "7.2.0",
"lerna": "^4.0.0",
"mocha": "^8.2.1",
"node-fetch": "^2.6.1",
"node-forge": "^0.10.0",
"node-html-parser": "^3.0.4",
"prettier": "2.2.1",
"ts-node": "^9.1.1",
"typedoc": "^0.20.28",
"typescript": "^4.1.3",
"nyc": "^15.1.0",
"glob": "^7.1.7",
"rimraf": "^3.0.2",
"dotenv-flow": "^3.2.0"
},
"workspaces": [
"packages/*"
]
}