2021-04-08 12:19:38 +03:00
|
|
|
{
|
|
|
|
"name": "mtcute",
|
|
|
|
"private": true,
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Cute and type-safe library for MTProto (Telegram API) for browser and NodeJS",
|
2021-07-19 03:57:47 +03:00
|
|
|
"license": "LGPL-3.0",
|
2021-04-08 12:19:38 +03:00
|
|
|
"author": "Alisa Sireneva <me@tei.su>",
|
|
|
|
"scripts": {
|
2021-06-06 15:20:41 +03:00
|
|
|
"test": "lerna run test",
|
|
|
|
"build": "lerna run build",
|
2021-04-08 12:19:38 +03:00
|
|
|
"lint": "eslint packages/**/*.ts",
|
2021-06-06 19:23:43 +03:00
|
|
|
"format": "prettier --write packages/**/*.ts",
|
|
|
|
"publish-all": "node scripts/publish.js all"
|
2021-04-08 12:19:38 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-05-16 15:50:31 +03:00
|
|
|
"node-gyp": "^8.0.0"
|
2021-04-08 12:19:38 +03:00
|
|
|
},
|
|
|
|
"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",
|
2021-06-10 02:31:48 +03:00
|
|
|
"@types/node-fetch": "^2.5.10",
|
2021-04-08 12:19:38 +03:00
|
|
|
"@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",
|
2021-06-06 19:23:43 +03:00
|
|
|
"nyc": "^15.1.0",
|
|
|
|
"glob": "^7.1.7",
|
2021-06-15 03:12:22 +03:00
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
"dotenv-flow": "^3.2.0"
|
2021-04-08 12:19:38 +03:00
|
|
|
},
|
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
|
|
|
]
|
|
|
|
}
|