nestjs-telegraf/package.json

87 lines
2.1 KiB
JSON
Raw Normal View History

2019-02-28 11:29:26 +03:00
{
2020-04-24 13:59:33 +03:00
"name": "nestjs-telegraf",
2021-10-01 15:50:17 +03:00
"version": "2.4.0",
2020-03-28 00:03:24 +03:00
"description": "Telegraf module for NestJS",
"keywords": [
"nest",
"nestjs",
2020-03-28 00:03:24 +03:00
"nestjs-module",
"telegraf",
"telegram",
"telegram bot",
"telegram bot api",
"bot",
"bot api",
"bot framework"
],
2021-08-05 11:26:26 +03:00
"homepage": "https://nestjs-telegraf.vercel.app/",
"bugs": {
2020-04-24 13:59:33 +03:00
"url": "https://github.com/bukhalo/nestjs-telegraf/issues"
},
2021-03-07 18:37:07 +03:00
"repository": "git@github.com:bukhalo/nestjs-telegraf.git",
"funding": [
{
"type": "individual",
"url": "https://www.tinkoff.ru/sl/95M2htqoxux"
}
],
2019-02-28 11:29:26 +03:00
"license": "MIT",
2020-12-30 20:37:11 +03:00
"author": "Alexander Bukhalo <a@bukhalo.com>",
"contributors": [
2021-01-05 16:18:37 +03:00
{
"name": "Arthur Asimov",
"email": "arthur.asimov.z0@gmail.com"
}
],
2021-01-05 16:18:37 +03:00
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"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": "",
"typedoc:build": "typedoc --tsconfig ./tsconfig.typedoc.json"
},
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"
},
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-angular": "15.0.0",
"@nestjs/common": "8.0.9",
"@nestjs/core": "8.0.9",
"@types/lodash": "4.14.177",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"eslint": "8.3.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"lint-staged": "12.1.2",
"prettier": "2.4.1",
"reflect-metadata": "0.1.13",
"telegraf": "4.4.2",
"typedoc": "0.22.9",
"typescript": "4.4.4"
2019-02-28 11:29:26 +03:00
},
"peerDependencies": {
"@nestjs/common": "^6.7.0 || ^7.0.0 || ^8.0.0",
"@nestjs/core": "^6.7.0 || ^7.0.0 || ^8.0.0",
"reflect-metadata": "^0.1.13",
"telegraf": "^4.0.0",
"typescript": "^4.1.2"
2019-02-28 11:29:26 +03:00
}
2020-01-23 21:16:37 +03:00
}