2021-04-08 12:19:38 +03:00
|
|
|
{
|
2021-08-05 20:38:24 +03:00
|
|
|
"name": "@mtcute/core",
|
2021-04-14 22:53:10 +03:00
|
|
|
"private": true,
|
2021-06-06 19:23:43 +03:00
|
|
|
"version": "1.0.0",
|
2021-04-08 12:19:38 +03:00
|
|
|
"description": "Core functions and base MTProto client",
|
2022-07-18 23:32:11 +03:00
|
|
|
"author": "Alina Sireneva <me@tei.su>",
|
2021-07-19 03:57:47 +03:00
|
|
|
"license": "LGPL-3.0",
|
2021-04-14 22:53:10 +03:00
|
|
|
"main": "src/index.ts",
|
2021-04-08 12:19:38 +03:00
|
|
|
"scripts": {
|
2022-06-30 16:32:56 +03:00
|
|
|
"test": "mocha -r ts-node/register \"tests/**/*.spec.ts\"",
|
2021-04-08 12:19:38 +03:00
|
|
|
"build": "tsc",
|
|
|
|
"docs": "npx typedoc"
|
|
|
|
},
|
2021-07-16 04:31:04 +03:00
|
|
|
"browser": {
|
|
|
|
"./utils/platform/crypto.js": "./utils/platform/crypto.web.js",
|
|
|
|
"./utils/platform/transport.js": "./utils/platform/transport.web.js",
|
2021-08-14 12:57:26 +03:00
|
|
|
"./utils/platform/logging.js": "./utils/platform/logging.web.js",
|
2021-07-16 04:31:04 +03:00
|
|
|
"./storage/json-file.js": false
|
|
|
|
},
|
2021-04-08 12:19:38 +03:00
|
|
|
"dependencies": {
|
2021-06-07 18:32:29 +03:00
|
|
|
"@types/node": "^15.12.1",
|
2021-06-06 19:23:43 +03:00
|
|
|
"@types/events": "^3.0.0",
|
2022-06-29 22:00:34 +03:00
|
|
|
"@types/long": "^4.0.2",
|
2022-08-12 16:17:35 +03:00
|
|
|
"@mtcute/tl": "workspace:^144.0.0",
|
2022-04-28 16:58:09 +03:00
|
|
|
"@mtcute/tl-runtime": "workspace:^1.0.0",
|
2021-06-06 19:23:43 +03:00
|
|
|
"big-integer": "1.6.48",
|
2021-11-23 00:03:59 +03:00
|
|
|
"long": "^4.0.0",
|
2021-06-06 19:23:43 +03:00
|
|
|
"events": "3.2.0"
|
2021-04-15 19:39:41 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/ws": "^7.4.1",
|
|
|
|
"ws": "^7.4.4"
|
2021-04-08 12:19:38 +03:00
|
|
|
}
|
2022-08-12 16:17:35 +03:00
|
|
|
}
|