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",
|
2023-06-04 20:00:33 +03:00
|
|
|
"author": "Alina Sireneva <alina@tei.su>",
|
2023-10-12 07:26:26 +03:00
|
|
|
"license": "MIT",
|
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",
|
2022-08-24 23:37:26 +03:00
|
|
|
"docs": "typedoc"
|
2021-04-08 12:19:38 +03:00
|
|
|
},
|
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",
|
2023-10-09 05:59:48 +03:00
|
|
|
"./utils/platform/random.js": "./utils/platform/random.web.js",
|
2021-07-16 04:31:04 +03:00
|
|
|
"./storage/json-file.js": false
|
|
|
|
},
|
2021-04-08 12:19:38 +03:00
|
|
|
"dependencies": {
|
2023-10-03 19:34:12 +03:00
|
|
|
"@mtcute/tl": "workspace:^165.0.0",
|
2022-04-28 16:58:09 +03:00
|
|
|
"@mtcute/tl-runtime": "workspace:^1.0.0",
|
2023-09-03 02:37:51 +03:00
|
|
|
"@types/events": "3.0.0",
|
|
|
|
"@types/node": "18.16.0",
|
2023-06-04 20:00:33 +03:00
|
|
|
"big-integer": "1.6.51",
|
2023-09-03 02:37:51 +03:00
|
|
|
"events": "3.2.0",
|
|
|
|
"long": "5.2.3"
|
2021-04-15 19:39:41 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-08-24 23:37:26 +03:00
|
|
|
"@mtcute/dispatcher": "workspace:^1.0.0",
|
2023-06-04 20:00:33 +03:00
|
|
|
"@types/ws": "8.5.4",
|
|
|
|
"ws": "8.13.0"
|
2021-04-08 12:19:38 +03:00
|
|
|
}
|
2023-10-09 05:59:48 +03:00
|
|
|
}
|