diff --git a/.eslintignore b/.eslintignore index 97008e5..42fecac 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,2 +1,3 @@ +.DS_Store node_modules -yarn.lock \ No newline at end of file +yarn.lock diff --git a/.gitignore b/.gitignore index 3c3629e..9daa824 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ +.DS_Store node_modules diff --git a/.prettierignore b/.prettierignore index 239ecff..42fecac 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,2 +1,3 @@ +.DS_Store node_modules yarn.lock diff --git a/package.json b/package.json index 25bb0c2..a531960 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,17 @@ { "name": "telegram-webapps", "version": "0.0.1", + "description": "Types for Telegram Web Apps", + "keywords": ["telegram", "telegram-webapps", "types"], + "homepage": "https://github.com/DavisDmitry/telegram-webapps", "license": "MIT", + "author": "Dmitry Davis ", + "files": ["src"], "types": "src/index.d.ts", - "homepage": "https://github.com/DavisDmitry/telegram-webapps", - "repository": "https://github.com/DavisDmitry/telegram-webapps.git", + "repository": { + "type": "git", + "url": "https://github.com/DavisDmitry/telegram-webapps.git" + }, "scripts": { "lint": "prettier --plugin-search-dir . --check . && eslint .", "format": "prettier --plugin-search-dir . --check . --write ."