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",
|
"name": "@mtcute/client",
|
||||||
|
"private": true,
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"description": "High-level API and bot framework for MTProto",
|
"description": "High-level API and bot framework for MTProto",
|
||||||
"author": "Alisa Sireneva <me@tei.su>",
|
"author": "Alisa Sireneva <me@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "dist/index.js",
|
"main": "src/index.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
|
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
|
||||||
"docs": "npx typedoc",
|
"docs": "npx typedoc",
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/core",
|
"name": "@mtcute/core",
|
||||||
|
"private": true,
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"description": "Core functions and base MTProto client",
|
"description": "Core functions and base MTProto client",
|
||||||
"author": "Alisa Sireneva <me@tei.su>",
|
"author": "Alisa Sireneva <me@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "dist/index.js",
|
"main": "src/index.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
|
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/html-parser",
|
"name": "@mtcute/html-parser",
|
||||||
|
"private": true,
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"description": "HTML entities parser for MTCute",
|
"description": "HTML entities parser for MTCute",
|
||||||
"author": "Alisa Sireneva <me@tei.su>",
|
"author": "Alisa Sireneva <me@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "index.js",
|
"main": "src/index.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
|
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
|
||||||
"coverage": "nyc npm run test",
|
"coverage": "nyc npm run test",
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "@mtcute/markdown-parser",
|
"name": "@mtcute/markdown-parser",
|
||||||
|
"private": true,
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"description": "Markdown entities parser for MTCute",
|
"description": "Markdown entities parser for MTCute",
|
||||||
"author": "Alisa Sireneva <me@tei.su>",
|
"author": "Alisa Sireneva <me@tei.su>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "index.js",
|
"main": "src/index.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
|
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
|
||||||
"coverage": "nyc npm run test",
|
"coverage": "nyc npm run test",
|
||||||
|
|
Loading…
Reference in a new issue