mtcute/packages/dispatcher/package.json

28 lines
766 B
JSON
Raw Normal View History

{
2021-08-05 20:38:24 +03:00
"name": "@mtcute/dispatcher",
"private": true,
2023-10-31 21:17:39 +03:00
"version": "0.0.0",
2021-08-05 20:38:24 +03:00
"description": "Updates dispatcher and bot framework for @mtcute/client",
"author": "Alina Sireneva <alina@tei.su>",
2023-10-12 07:26:26 +03:00
"license": "MIT",
"main": "src/index.ts",
"type": "module",
"distOnlyFields": {
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
}
}
},
"scripts": {
"test": "mocha \"tests/**/*.spec.ts\"",
"docs": "typedoc",
"build": "pnpm run -w build-package dispatcher",
"gen-updates": "node ./scripts/generate.cjs"
},
"dependencies": {
"@mtcute/client": "workspace:^",
"events": "3.2.0"
}
2022-09-12 13:54:33 +03:00
}