From ca209968ad888787b68c63fbb7fe3744c5363522 Mon Sep 17 00:00:00 2001 From: Kravets <57632712+kravetsone@users.noreply.github.com> Date: Thu, 18 Jul 2024 18:31:27 +0300 Subject: [PATCH] chore: add deno.json file --- README.md | 2 +- deno.json | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 deno.json diff --git a/README.md b/README.md index afe37e3..89e3383 100644 --- a/README.md +++ b/README.md @@ -97,4 +97,4 @@ telegram.api.sendDocument({ }); ``` -[Read more her](https://gramio.dev/files/overview) +[Read more here](https://gramio.dev/files/overview) diff --git a/deno.json b/deno.json new file mode 100644 index 0000000..accbb88 --- /dev/null +++ b/deno.json @@ -0,0 +1,12 @@ +{ + "name": "@gramio/wrappergram", + "version": "0.0.1", + "exports": "./src/index.ts", + "publish": { + "include": ["deno.json", "src", "README.md", "tsconfig.json"] + }, + "imports": { + "@gramio/types": "jsr:@gramio/types@^7.7.2", + "@gramio/files": "jsr:@gramio/files@^0.0.12" + } +}