mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-26 15:58:09 +03:00
66 lines
1.5 KiB
JSON
66 lines
1.5 KiB
JSON
{
|
|
"name": "nestjs-telegraf",
|
|
"version": "1.0.0-alpha.1",
|
|
"description": "Telegraf module for Nest framework",
|
|
"keywords": [
|
|
"nest",
|
|
"nestjs",
|
|
"nodejs",
|
|
"typescript",
|
|
"telegraf",
|
|
"telegram",
|
|
"telegram bot",
|
|
"telegram bot api",
|
|
"bot",
|
|
"bot api",
|
|
"bot framework"
|
|
],
|
|
"homepage": "https://github.com/bukhalo/nestjs-telegraf#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/bukhalo/nestjs-telegraf/issues",
|
|
"email": "aleksandr@bukhalo.com"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Aleksandr Bukhalo <aleksandr@bukhalo.com>",
|
|
"contributors": [
|
|
"Aleksandr Bukhalo <aleksandr@bukhalo.com> (https://bukhalo.com/)",
|
|
"Igor Kamyshev <igor@kamyshev.me> (https://kamyshev.me/)"
|
|
],
|
|
"repository": "git@github.com:bukhalo/nestjs-telegraf.git",
|
|
"scripts": {
|
|
"build": "rm -rf dist && tsc -p tsconfig.json",
|
|
"precommit": "lint-staged",
|
|
"prepublish:npm": "npm run build",
|
|
"publish:npm": "npm publish --access public",
|
|
"test": ""
|
|
},
|
|
"dependencies": {
|
|
"telegraf": "3.36.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/common": "7.0.6",
|
|
"@nestjs/core": "7.0.6",
|
|
"husky": "4.2.3",
|
|
"lint-staged": "10.0.9",
|
|
"prettier": "2.0.2",
|
|
"reflect-metadata": "0.1.13",
|
|
"typescript": "3.8.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@nestjs/common": "^6.7.0 || ^7.0.0",
|
|
"@nestjs/core": "^6.7.0 || ^7.0.0",
|
|
"reflect-metadata": "^0.1.13"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": [
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|