v0.16.9
This commit is contained in:
parent
743fd6223c
commit
318dbd6548
21 changed files with 390 additions and 390 deletions
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "mtcute-workspace",
|
"name": "mtcute-workspace",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.8",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"packageManager": "pnpm@9.0.6",
|
"packageManager": "pnpm@9.0.6",
|
||||||
"description": "Type-safe library for MTProto (Telegram API) for browser and NodeJS",
|
"description": "Type-safe library for MTProto (Telegram API) for browser and NodeJS",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/bun",
|
"name": "@mtcute/bun",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Meta-package for Bun",
|
"description": "Meta-package for Bun",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/convert",
|
"name": "@mtcute/convert",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Cross-library session conversion utilities",
|
"description": "Cross-library session conversion utilities",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": "./src/index.ts",
|
"exports": "./src/index.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run -w build-package convert"
|
"build": "pnpm run -w build-package convert"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mtcute/core": "workspace:^"
|
"@mtcute/core": "workspace:^"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@mtcute/test": "workspace:^"
|
"@mtcute/test": "workspace:^"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,36 +1,36 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/core",
|
"name": "@mtcute/core",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Type-safe library for MTProto (Telegram API)",
|
"description": "Type-safe library for MTProto (Telegram API)",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./src/index.ts",
|
".": "./src/index.ts",
|
||||||
"./utils.js": "./src/utils/index.ts",
|
"./utils.js": "./src/utils/index.ts",
|
||||||
"./client.js": "./src/highlevel/client.ts",
|
"./client.js": "./src/highlevel/client.ts",
|
||||||
"./worker.js": "./src/highlevel/worker/index.ts",
|
"./worker.js": "./src/highlevel/worker/index.ts",
|
||||||
"./methods.js": "./src/highlevel/methods.ts",
|
"./methods.js": "./src/highlevel/methods.ts",
|
||||||
"./platform.js": "./src/platform.ts"
|
"./platform.js": "./src/platform.ts"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run -w build-package core",
|
"build": "pnpm run -w build-package core",
|
||||||
"gen-client": "node ./scripts/generate-client.cjs",
|
"gen-client": "node ./scripts/generate-client.cjs",
|
||||||
"gen-updates": "node ./scripts/generate-updates.cjs"
|
"gen-updates": "node ./scripts/generate-updates.cjs"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mtcute/file-id": "workspace:^",
|
"@mtcute/file-id": "workspace:^",
|
||||||
"@mtcute/tl": "workspace:^",
|
"@mtcute/tl": "workspace:^",
|
||||||
"@mtcute/tl-runtime": "workspace:^",
|
"@mtcute/tl-runtime": "workspace:^",
|
||||||
"@types/events": "3.0.0",
|
"@types/events": "3.0.0",
|
||||||
"events": "3.2.0",
|
"events": "3.2.0",
|
||||||
"long": "5.2.3"
|
"long": "5.2.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@mtcute/test": "workspace:^",
|
"@mtcute/test": "workspace:^",
|
||||||
"@types/ws": "8.5.4",
|
"@types/ws": "8.5.4",
|
||||||
"ws": "8.13.0"
|
"ws": "8.13.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/create-bot",
|
"name": "@mtcute/create-bot",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Bot starter kit for mtcute",
|
"description": "Bot starter kit for mtcute",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
|
|
|
@ -1,30 +1,30 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/crypto-node",
|
"name": "@mtcute/crypto-node",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Native crypto implementation for NodeJS",
|
"description": "Native crypto implementation for NodeJS",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./src/index.ts",
|
".": "./src/index.ts",
|
||||||
"./native.js": "./src/native.cjs"
|
"./native.js": "./src/native.cjs"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run -w build-package crypto-node",
|
"build": "pnpm run -w build-package crypto-node",
|
||||||
"install": "node-gyp-build",
|
"install": "node-gyp-build",
|
||||||
"rebuild": "node-gyp configure && node-gyp -j 16 rebuild",
|
"rebuild": "node-gyp configure && node-gyp -j 16 rebuild",
|
||||||
"clean": "node-gyp clean"
|
"clean": "node-gyp clean"
|
||||||
},
|
},
|
||||||
"keepScripts": [
|
"keepScripts": [
|
||||||
"install"
|
"install"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mtcute/node": "workspace:^",
|
"@mtcute/node": "workspace:^",
|
||||||
"node-gyp-build": "4.8.1"
|
"node-gyp-build": "4.8.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@mtcute/test": "workspace:^"
|
"@mtcute/test": "workspace:^"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,31 +1,31 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/deno",
|
"name": "@mtcute/deno",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.8",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Meta-package for Deno",
|
"description": "Meta-package for Deno",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./src/index.ts",
|
".": "./src/index.ts",
|
||||||
"./utils.js": "./src/utils.ts",
|
"./utils.js": "./src/utils.ts",
|
||||||
"./methods.js": "./src/methods.ts"
|
"./methods.js": "./src/methods.ts"
|
||||||
},
|
},
|
||||||
"main": "src/index.ts",
|
"main": "src/index.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"docs": "typedoc",
|
"docs": "typedoc",
|
||||||
"build": "pnpm run -w build-package deno"
|
"build": "pnpm run -w build-package deno"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@db/sqlite": "npm:@jsr/db__sqlite@0.12.0",
|
"@db/sqlite": "npm:@jsr/db__sqlite@0.12.0",
|
||||||
"@mtcute/core": "workspace:^",
|
"@mtcute/core": "workspace:^",
|
||||||
"@mtcute/html-parser": "workspace:^",
|
"@mtcute/html-parser": "workspace:^",
|
||||||
"@mtcute/markdown-parser": "workspace:^",
|
"@mtcute/markdown-parser": "workspace:^",
|
||||||
"@mtcute/wasm": "workspace:^",
|
"@mtcute/wasm": "workspace:^",
|
||||||
"@std/io": "npm:@jsr/std__io@0.223.0"
|
"@std/io": "npm:@jsr/std__io@0.223.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@mtcute/test": "workspace:^"
|
"@mtcute/test": "workspace:^"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/dispatcher",
|
"name": "@mtcute/dispatcher",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Updates dispatcher and bot framework for @mtcute/client",
|
"description": "Updates dispatcher and bot framework for @mtcute/client",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": "./src/index.ts",
|
"exports": "./src/index.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run -w build-package dispatcher",
|
"build": "pnpm run -w build-package dispatcher",
|
||||||
"gen-updates": "node ./scripts/generate.cjs"
|
"gen-updates": "node ./scripts/generate.cjs"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mtcute/core": "workspace:^",
|
"@mtcute/core": "workspace:^",
|
||||||
"events": "3.2.0"
|
"events": "3.2.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@mtcute/test": "workspace:^"
|
"@mtcute/test": "workspace:^"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,23 +1,23 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/file-id",
|
"name": "@mtcute/file-id",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Support for TDLib and Bot API file ID for mtcute",
|
"description": "Support for TDLib and Bot API file ID for mtcute",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./src/index.ts"
|
".": "./src/index.ts"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run -w build-package file-id"
|
"build": "pnpm run -w build-package file-id"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mtcute/tl-runtime": "workspace:^",
|
"@mtcute/tl-runtime": "workspace:^",
|
||||||
"long": "5.2.3"
|
"long": "5.2.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@mtcute/test": "workspace:^"
|
"@mtcute/test": "workspace:^"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/html-parser",
|
"name": "@mtcute/html-parser",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "HTML entities parser for mtcute",
|
"description": "HTML entities parser for mtcute",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": "./src/index.ts",
|
"exports": "./src/index.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run -w build-package html-parser"
|
"build": "pnpm run -w build-package html-parser"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mtcute/core": "workspace:^",
|
"@mtcute/core": "workspace:^",
|
||||||
"htmlparser2": "^6.0.1",
|
"htmlparser2": "^6.0.1",
|
||||||
"long": "5.2.3"
|
"long": "5.2.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/http-proxy",
|
"name": "@mtcute/http-proxy",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "HTTP(S) proxy support for mtcute",
|
"description": "HTTP(S) proxy support for mtcute",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": "./index.ts",
|
"exports": "./index.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"docs": "typedoc",
|
"docs": "typedoc",
|
||||||
"build": "pnpm run -w build-package http-proxy"
|
"build": "pnpm run -w build-package http-proxy"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mtcute/node": "workspace:^"
|
"@mtcute/node": "workspace:^"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,24 +1,24 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/i18n",
|
"name": "@mtcute/i18n",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "I18n for mtcute",
|
"description": "I18n for mtcute",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": "./src/index.ts",
|
"exports": "./src/index.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run -w build-package i18n"
|
"build": "pnpm run -w build-package i18n"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@mtcute/core": "workspace:^",
|
"@mtcute/core": "workspace:^",
|
||||||
"@mtcute/dispatcher": "workspace:^"
|
"@mtcute/dispatcher": "workspace:^"
|
||||||
},
|
},
|
||||||
"jsrOnlyFields": {
|
"jsrOnlyFields": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mtcute/core": "workspace:^",
|
"@mtcute/core": "workspace:^",
|
||||||
"@mtcute/dispatcher": "workspace:^"
|
"@mtcute/dispatcher": "workspace:^"
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/markdown-parser",
|
"name": "@mtcute/markdown-parser",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Markdown entities parser for mtcute",
|
"description": "Markdown entities parser for mtcute",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": "./src/index.ts",
|
"exports": "./src/index.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run -w build-package markdown-parser"
|
"build": "pnpm run -w build-package markdown-parser"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mtcute/core": "workspace:^",
|
"@mtcute/core": "workspace:^",
|
||||||
"long": "5.2.3"
|
"long": "5.2.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/mtproxy",
|
"name": "@mtcute/mtproxy",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "MTProto proxy (MTProxy) support for mtcute",
|
"description": "MTProto proxy (MTProxy) support for mtcute",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": "./index.ts",
|
"exports": "./index.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"docs": "typedoc",
|
"docs": "typedoc",
|
||||||
"build": "pnpm run -w build-package mtproxy"
|
"build": "pnpm run -w build-package mtproxy"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mtcute/node": "workspace:^"
|
"@mtcute/node": "workspace:^"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,30 +1,30 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/node",
|
"name": "@mtcute/node",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Meta-package for Node.js",
|
"description": "Meta-package for Node.js",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./src/index.ts",
|
".": "./src/index.ts",
|
||||||
"./utils.js": "./src/utils.ts",
|
"./utils.js": "./src/utils.ts",
|
||||||
"./methods.js": "./src/methods.ts"
|
"./methods.js": "./src/methods.ts"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"docs": "typedoc",
|
"docs": "typedoc",
|
||||||
"build": "pnpm run -w build-package node"
|
"build": "pnpm run -w build-package node"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mtcute/core": "workspace:^",
|
"@mtcute/core": "workspace:^",
|
||||||
"@mtcute/html-parser": "workspace:^",
|
"@mtcute/html-parser": "workspace:^",
|
||||||
"@mtcute/markdown-parser": "workspace:^",
|
"@mtcute/markdown-parser": "workspace:^",
|
||||||
"@mtcute/wasm": "workspace:^",
|
"@mtcute/wasm": "workspace:^",
|
||||||
"better-sqlite3": "9.5.0"
|
"better-sqlite3": "9.5.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@mtcute/test": "workspace:^",
|
"@mtcute/test": "workspace:^",
|
||||||
"@types/better-sqlite3": "7.6.4"
|
"@types/better-sqlite3": "7.6.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/socks-proxy",
|
"name": "@mtcute/socks-proxy",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "SOCKS4/5 proxy support for mtcute",
|
"description": "SOCKS4/5 proxy support for mtcute",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": "./index.ts",
|
"exports": "./index.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"docs": "typedoc",
|
"docs": "typedoc",
|
||||||
"build": "pnpm run -w build-package socks-proxy"
|
"build": "pnpm run -w build-package socks-proxy"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mtcute/node": "workspace:^",
|
"@mtcute/node": "workspace:^",
|
||||||
"ip6": "0.2.7"
|
"ip6": "0.2.7"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,38 +1,38 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/test",
|
"name": "@mtcute/test",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Test utilities for mtcute",
|
"description": "Test utilities for mtcute",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": "./src/index.ts",
|
"exports": "./src/index.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run -w build-package test"
|
"build": "pnpm run -w build-package test"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"@mtcute/core": "workspace:^",
|
||||||
|
"@mtcute/node": "workspace:^",
|
||||||
|
"@mtcute/tl": "workspace:*",
|
||||||
|
"@mtcute/web": "workspace:^",
|
||||||
|
"vitest": "*"
|
||||||
|
},
|
||||||
|
"peerDependenciesMeta": {
|
||||||
|
"@mtcute/node": {
|
||||||
|
"optional": true
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"@mtcute/web": {
|
||||||
"@mtcute/core": "workspace:^",
|
"optional": true
|
||||||
"@mtcute/node": "workspace:^",
|
|
||||||
"@mtcute/tl": "workspace:*",
|
|
||||||
"@mtcute/web": "workspace:^",
|
|
||||||
"vitest": "*"
|
|
||||||
},
|
|
||||||
"peerDependenciesMeta": {
|
|
||||||
"@mtcute/node": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"@mtcute/web": {
|
|
||||||
"optional": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"long": "5.2.3"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@mtcute/tl-utils": "workspace:^"
|
|
||||||
},
|
|
||||||
"browser": {
|
|
||||||
"./src/platform.js": "./src/platform.web.js"
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"long": "5.2.3"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@mtcute/tl-utils": "workspace:^"
|
||||||
|
},
|
||||||
|
"browser": {
|
||||||
|
"./src/platform.js": "./src/platform.web.js"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/tl-runtime",
|
"name": "@mtcute/tl-runtime",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Runtime for TL",
|
"description": "Runtime for TL",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./src/index.ts"
|
".": "./src/index.ts"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"docs": "typedoc",
|
"docs": "typedoc",
|
||||||
"build": "pnpm run -w build-package tl-runtime"
|
"build": "pnpm run -w build-package tl-runtime"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"long": "5.2.3"
|
"long": "5.2.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/tl-utils",
|
"name": "@mtcute/tl-utils",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Utils for working with TL schema",
|
"description": "Utils for working with TL schema",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./src/index.ts",
|
".": "./src/index.ts",
|
||||||
"./json.js": "./src/json/index.ts"
|
"./json.js": "./src/json/index.ts"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"docs": "typedoc",
|
"docs": "typedoc",
|
||||||
"build": "pnpm run -w build-package tl-utils"
|
"build": "pnpm run -w build-package tl-utils"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mtcute/tl-runtime": "workspace:^",
|
"@mtcute/tl-runtime": "workspace:^",
|
||||||
"crc-32": "1.2.0"
|
"crc-32": "1.2.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/wasm",
|
"name": "@mtcute/wasm",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "WASM implementation of common algorithms used in Telegram",
|
"description": "WASM implementation of common algorithms used in Telegram",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
|
|
|
@ -1,36 +1,36 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/web",
|
"name": "@mtcute/web",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.16.7",
|
"version": "0.16.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Meta-package for the web platform",
|
"description": "Meta-package for the web platform",
|
||||||
"author": "alina sireneva <alina@tei.su>",
|
"author": "alina sireneva <alina@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./src/index.ts",
|
".": "./src/index.ts",
|
||||||
"./utils.js": "./src/utils.ts",
|
"./utils.js": "./src/utils.ts",
|
||||||
"./methods.js": "./src/methods.ts"
|
"./methods.js": "./src/methods.ts"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"docs": "typedoc",
|
"docs": "typedoc",
|
||||||
"build": "pnpm run -w build-package web"
|
"build": "pnpm run -w build-package web"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mtcute/core": "workspace:^",
|
"@mtcute/core": "workspace:^",
|
||||||
"@mtcute/wasm": "workspace:^",
|
"@mtcute/wasm": "workspace:^",
|
||||||
"events": "3.2.0"
|
"events": "3.2.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@mtcute/test": "workspace:^"
|
"@mtcute/test": "workspace:^"
|
||||||
},
|
},
|
||||||
"denoJson": {
|
"denoJson": {
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"lib": [
|
"lib": [
|
||||||
"dom",
|
"dom",
|
||||||
"dom.iterable",
|
"dom.iterable",
|
||||||
"WebWorker"
|
"WebWorker"
|
||||||
]
|
]
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue