2019-02-28 11:29:26 +03:00
|
|
|
{
|
2023-07-23 13:27:50 +03:00
|
|
|
"name": "@maks1ms/nestjs-telegraf",
|
2023-07-24 16:42:26 +03:00
|
|
|
"version": "2.7.1",
|
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"
|
|
|
|
],
|
|
|
|
"bugs": {
|
2023-07-23 13:27:50 +03:00
|
|
|
"url": "https://github.com/Maks1mS/nestjs-telegraf/issues"
|
2020-01-12 14:54:23 +03:00
|
|
|
},
|
2023-07-23 13:27:50 +03:00
|
|
|
"repository": "git@github.com:Maks1mS/nestjs-telegraf.git",
|
2019-02-28 11:29:26 +03:00
|
|
|
"license": "MIT",
|
2022-08-24 14:29:08 +03:00
|
|
|
"author": "Hypeer <hello@hypeer.company>",
|
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"
|
2023-07-23 13:27:50 +03:00
|
|
|
},
|
|
|
|
{
|
2023-07-23 13:29:34 +03:00
|
|
|
"name": "Maxim Slipenko"
|
2021-01-05 16:18:37 +03:00
|
|
|
}
|
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-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
|
|
|
},
|
2021-03-07 18:37:07 +03:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged",
|
|
|
|
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.ts": [
|
|
|
|
"prettier --write"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"lodash": "^4.17.21"
|
|
|
|
},
|
2020-01-12 14:18:48 +03:00
|
|
|
"devDependencies": {
|
2023-07-24 13:36:39 +03:00
|
|
|
"@commitlint/cli": "17.6.7",
|
2023-07-24 13:38:56 +03:00
|
|
|
"@commitlint/config-angular": "17.6.7",
|
2022-08-24 14:36:37 +03:00
|
|
|
"@nestjs/common": "^9.0.11",
|
|
|
|
"@nestjs/core": "^9.0.11",
|
2022-12-01 11:15:26 +03:00
|
|
|
"@types/lodash": "4.14.191",
|
2022-11-26 11:23:29 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.44.0",
|
2023-07-23 16:06:46 +03:00
|
|
|
"@typescript-eslint/parser": "5.62.0",
|
2023-07-23 16:05:26 +03:00
|
|
|
"eslint": "8.45.0",
|
2023-07-24 13:37:44 +03:00
|
|
|
"eslint-config-prettier": "8.8.0",
|
2022-07-01 15:06:18 +03:00
|
|
|
"eslint-plugin-prettier": "4.2.1",
|
2023-07-24 13:30:34 +03:00
|
|
|
"husky": "8.0.3",
|
2023-07-23 16:06:44 +03:00
|
|
|
"lint-staged": "13.2.3",
|
2023-07-24 13:32:01 +03:00
|
|
|
"prettier": "3.0.0",
|
2020-01-23 21:29:45 +03:00
|
|
|
"reflect-metadata": "0.1.13",
|
2023-06-28 13:37:29 +03:00
|
|
|
"telegraf": "4.12.2",
|
2022-08-29 20:21:46 +03:00
|
|
|
"typedoc": "0.23.11",
|
|
|
|
"typescript": "4.8.2"
|
2019-02-28 11:29:26 +03:00
|
|
|
},
|
2020-01-12 14:54:23 +03:00
|
|
|
"peerDependencies": {
|
2023-06-25 14:21:06 +03:00
|
|
|
"@nestjs/common": "^9.0.0 || ^10.0.0",
|
|
|
|
"@nestjs/core": "^9.0.0 || ^10.0.0",
|
2021-01-11 16:17:32 +03:00
|
|
|
"reflect-metadata": "^0.1.13",
|
2021-06-01 19:57:01 +03:00
|
|
|
"telegraf": "^4.0.0",
|
2023-07-24 09:20:40 +03:00
|
|
|
"typescript": "^4.1.2 || ^5.0.2"
|
2019-02-28 11:29:26 +03:00
|
|
|
}
|
2020-01-23 21:16:37 +03:00
|
|
|
}
|