2019-02-28 11:29:26 +03:00
|
|
|
{
|
2020-04-24 13:59:33 +03:00
|
|
|
"name": "nestjs-telegraf",
|
2021-02-02 01:55:34 +03:00
|
|
|
"version": "2.0.0-beta.4",
|
2020-03-28 00:03:24 +03:00
|
|
|
"description": "Telegraf module for NestJS",
|
2020-01-12 14:54:23 +03:00
|
|
|
"keywords": [
|
|
|
|
"nest",
|
|
|
|
"nestjs",
|
2020-03-28 00:03:24 +03:00
|
|
|
"nestjs-module",
|
2020-01-12 14:54:23 +03:00
|
|
|
"telegraf",
|
|
|
|
"telegram",
|
|
|
|
"telegram bot",
|
|
|
|
"telegram bot api",
|
|
|
|
"bot",
|
|
|
|
"bot api",
|
|
|
|
"bot framework"
|
|
|
|
],
|
2020-04-24 13:59:33 +03:00
|
|
|
"homepage": "https://github.com/bukhalo/nestjs-telegraf#readme",
|
2020-01-12 14:54:23 +03:00
|
|
|
"bugs": {
|
2020-04-24 13:59:33 +03:00
|
|
|
"url": "https://github.com/bukhalo/nestjs-telegraf/issues"
|
2020-01-12 14:54:23 +03:00
|
|
|
},
|
2019-02-28 11:29:26 +03:00
|
|
|
"license": "MIT",
|
2020-12-30 20:37:11 +03:00
|
|
|
"author": "Alexander Bukhalo <a@bukhalo.com>",
|
2020-01-12 14:54:23 +03:00
|
|
|
"contributors": [
|
2021-01-05 16:18:37 +03:00
|
|
|
{
|
|
|
|
"name": "Arthur Asimov",
|
|
|
|
"email": "arthur.asimov.z0@gmail.com"
|
|
|
|
}
|
2020-01-12 14:54:23 +03:00
|
|
|
],
|
2021-01-05 16:18:37 +03:00
|
|
|
"funding": [
|
|
|
|
{
|
|
|
|
"type": "individual",
|
|
|
|
"url": "https://www.tinkoff.ru/sl/95M2htqoxux"
|
|
|
|
}
|
2020-01-12 14:54:23 +03:00
|
|
|
],
|
2021-01-05 16:18:37 +03:00
|
|
|
"main": "./dist/index.js",
|
|
|
|
"types": "./dist/index.d.ts",
|
2020-04-24 13:59:33 +03:00
|
|
|
"repository": "git@github.com:bukhalo/nestjs-telegraf.git",
|
2020-01-12 14:54:23 +03:00
|
|
|
"scripts": {
|
2021-01-03 16:52:11 +03:00
|
|
|
"build": "rm -rf dist && tsc -p tsconfig.json",
|
2020-01-12 14:54:23 +03:00
|
|
|
"precommit": "lint-staged",
|
|
|
|
"prepublish:npm": "npm run build",
|
2020-03-31 18:40:55 +03:00
|
|
|
"publish:npm": "npm publish --access public",
|
2020-09-13 11:25:23 +03:00
|
|
|
"test": "",
|
2021-01-03 16:39:13 +03:00
|
|
|
"typedoc:build": "typedoc --tsconfig ./tsconfig.typedoc.json"
|
2020-01-12 14:54:23 +03:00
|
|
|
},
|
2020-01-12 14:18:48 +03:00
|
|
|
"devDependencies": {
|
2021-01-07 13:35:32 +03:00
|
|
|
"@commitlint/cli": "11.0.0",
|
|
|
|
"@commitlint/config-angular": "11.0.0",
|
2021-02-02 01:27:32 +03:00
|
|
|
"@nestjs/common": "7.6.8",
|
|
|
|
"@nestjs/core": "7.6.8",
|
2021-01-18 21:50:02 +03:00
|
|
|
"@types/lodash": "4.14.168",
|
2021-02-02 01:31:09 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "4.14.2",
|
|
|
|
"@typescript-eslint/parser": "4.14.2",
|
2021-02-02 01:27:02 +03:00
|
|
|
"eslint": "7.19.0",
|
2021-01-19 11:51:04 +03:00
|
|
|
"eslint-config-prettier": "7.2.0",
|
2021-01-07 04:01:58 +03:00
|
|
|
"eslint-plugin-prettier": "3.3.1",
|
2021-01-16 03:36:17 +03:00
|
|
|
"husky": "4.3.8",
|
2020-12-08 12:28:29 +03:00
|
|
|
"lint-staged": "10.5.3",
|
2021-01-02 22:01:40 +03:00
|
|
|
"lodash": "4.17.20",
|
2020-12-07 21:01:48 +03:00
|
|
|
"prettier": "2.2.1",
|
2020-01-23 21:29:45 +03:00
|
|
|
"reflect-metadata": "0.1.13",
|
2020-09-07 10:23:21 +03:00
|
|
|
"rxjs": "6.6.3",
|
2021-02-02 01:26:23 +03:00
|
|
|
"telegraf": "4.0.2",
|
2021-02-02 01:30:45 +03:00
|
|
|
"typedoc": "0.20.20",
|
2020-12-30 14:34:57 +03:00
|
|
|
"typescript": "4.1.3"
|
2019-02-28 11:29:26 +03:00
|
|
|
},
|
2020-01-12 14:54:23 +03:00
|
|
|
"peerDependencies": {
|
2020-03-24 13:18:30 +03:00
|
|
|
"@nestjs/common": "^6.7.0 || ^7.0.0",
|
|
|
|
"@nestjs/core": "^6.7.0 || ^7.0.0",
|
2021-01-11 16:17:32 +03:00
|
|
|
"reflect-metadata": "^0.1.13",
|
|
|
|
"telegraf": "^4.0.0"
|
2019-02-28 11:29:26 +03:00
|
|
|
},
|
2020-01-12 14:18:48 +03:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2021-01-07 13:35:32 +03:00
|
|
|
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
|
2020-01-12 14:18:48 +03:00
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
2019-02-28 11:29:26 +03:00
|
|
|
},
|
2020-01-12 14:18:48 +03:00
|
|
|
"lint-staged": {
|
|
|
|
"*.ts": [
|
2021-01-03 13:34:15 +03:00
|
|
|
"prettier --write"
|
2020-01-12 14:18:48 +03:00
|
|
|
]
|
2019-02-28 11:29:26 +03:00
|
|
|
}
|
2020-01-23 21:16:37 +03:00
|
|
|
}
|