mtcute/packages/core/package.json

36 lines
1.1 KiB
JSON
Raw Normal View History

2021-04-08 12:19:38 +03:00
{
2021-08-05 20:38:24 +03:00
"name": "@mtcute/core",
"private": true,
"version": "1.0.0",
2021-04-08 12:19:38 +03:00
"description": "Core functions and base MTProto client",
"author": "Alina Sireneva <alina@tei.su>",
2023-10-12 07:26:26 +03:00
"license": "MIT",
"main": "src/index.ts",
2021-04-08 12:19:38 +03:00
"scripts": {
"test": "mocha -r ts-node/register \"tests/**/*.spec.ts\"",
2021-04-08 12:19:38 +03:00
"build": "tsc",
"docs": "typedoc"
2021-04-08 12:19:38 +03:00
},
"browser": {
"./utils/platform/crypto.js": "./utils/platform/crypto.web.js",
"./utils/platform/transport.js": "./utils/platform/transport.web.js",
"./utils/platform/logging.js": "./utils/platform/logging.web.js",
"./utils/platform/random.js": "./utils/platform/random.web.js",
"./storage/json-file.js": false
},
2021-04-08 12:19:38 +03:00
"dependencies": {
"@mtcute/tl": "workspace:^165.0.0",
"@mtcute/tl-runtime": "workspace:^1.0.0",
"@types/events": "3.0.0",
"@types/node": "18.16.0",
"big-integer": "1.6.51",
"events": "3.2.0",
"long": "5.2.3"
2021-04-15 19:39:41 +03:00
},
"devDependencies": {
"@mtcute/dispatcher": "workspace:^1.0.0",
"@types/ws": "8.5.4",
"ws": "8.13.0"
2021-04-08 12:19:38 +03:00
}
}