mtcute/packages/core/package.json

37 lines
1.1 KiB
JSON
Raw Normal View History

2021-04-08 12:19:38 +03:00
{
"name": "@mtcute/core",
"type": "module",
2025-01-27 18:44:46 +03:00
"version": "0.20.1",
"private": true,
"description": "Type-safe library for MTProto (Telegram API)",
"author": "alina sireneva <alina@tei.su>",
"license": "MIT",
"sideEffects": false,
"exports": {
".": "./src/index.ts",
"./utils.js": "./src/utils/index.ts",
"./client.js": "./src/highlevel/client.ts",
"./worker.js": "./src/highlevel/worker/index.ts",
"./methods.js": "./src/highlevel/methods.ts"
},
"scripts": {
"gen-client": "node ./scripts/generate-client.cjs",
"gen-updates": "node ./scripts/generate-updates.cjs"
},
"dependencies": {
2025-01-05 16:56:25 +03:00
"@fuman/io": "0.0.8",
2025-01-06 17:53:41 +03:00
"@fuman/net": "0.0.9",
2024-12-26 20:01:01 +03:00
"@fuman/utils": "0.0.4",
"@mtcute/file-id": "workspace:^",
"@mtcute/tl": "workspace:^",
"@mtcute/tl-runtime": "workspace:^",
"@types/events": "3.0.0",
"long": "5.2.3"
},
"devDependencies": {
"@mtcute/test": "workspace:^",
"@types/ws": "8.5.4",
"ws": "8.13.0"
}
2023-11-01 22:56:23 +03:00
}