refactor: made all packages private and changed main to typescript file
This commit is contained in:
parent
c949709de2
commit
c286570500
4 changed files with 8 additions and 4 deletions
|
@ -1,10 +1,11 @@
|
|||
{
|
||||
"name": "@mtcute/client",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"description": "High-level API and bot framework for MTProto",
|
||||
"author": "Alisa Sireneva <me@tei.su>",
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"main": "src/index.ts",
|
||||
"scripts": {
|
||||
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
|
||||
"docs": "npx typedoc",
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
{
|
||||
"name": "@mtcute/core",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"description": "Core functions and base MTProto client",
|
||||
"author": "Alisa Sireneva <me@tei.su>",
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"main": "src/index.ts",
|
||||
"scripts": {
|
||||
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
|
||||
"build": "tsc",
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
{
|
||||
"name": "@mtcute/html-parser",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"description": "HTML entities parser for MTCute",
|
||||
"author": "Alisa Sireneva <me@tei.su>",
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"main": "src/index.ts",
|
||||
"scripts": {
|
||||
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
|
||||
"coverage": "nyc npm run test",
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
{
|
||||
"name": "@mtcute/markdown-parser",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"description": "Markdown entities parser for MTCute",
|
||||
"author": "Alisa Sireneva <me@tei.su>",
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"main": "src/index.ts",
|
||||
"scripts": {
|
||||
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
|
||||
"coverage": "nyc npm run test",
|
||||
|
|
Loading…
Reference in a new issue