mtcute/packages/node/package.json

30 lines
798 B
JSON
Raw Normal View History

2021-06-06 00:37:44 +03:00
{
2021-08-05 20:38:24 +03:00
"name": "@mtcute/node",
2021-06-06 00:37:44 +03:00
"private": true,
"version": "1.0.0",
2021-06-06 00:37:44 +03:00
"description": "Meta-package for Node JS",
"author": "Alina Sireneva <alina@tei.su>",
2023-10-12 07:26:26 +03:00
"license": "MIT",
2021-06-06 00:37:44 +03:00
"main": "index.ts",
"type": "module",
2021-06-06 00:37:44 +03:00
"scripts": {
"docs": "typedoc",
"build": "pnpm run -w build-package node"
},
"distOnlyFields": {
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
}
}
2021-06-06 00:37:44 +03:00
},
"dependencies": {
"@mtcute/client": "workspace:^1.0.0",
"@mtcute/sqlite": "workspace:^1.0.0",
"@mtcute/markdown-parser": "workspace:^1.0.0",
"@mtcute/html-parser": "workspace:^1.0.0",
"@mtcute/dispatcher": "workspace:^1.0.0"
2021-06-06 00:37:44 +03:00
}
}