nestjs-telegraf/package.json

83 lines
2.0 KiB
JSON
Raw Permalink Normal View History

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",
"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"
],
"bugs": {
2023-07-23 13:27:50 +03:00
"url": "https://github.com/Maks1mS/nestjs-telegraf/issues"
},
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>",
"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
}
],
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": "17.6.7",
"@commitlint/config-angular": "17.6.7",
2022-08-24 14:36:37 +03:00
"@nestjs/common": "^9.0.11",
"@nestjs/core": "^9.0.11",
"@types/lodash": "4.14.191",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"prettier": "3.0.0",
"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
},
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0",
"@nestjs/core": "^9.0.0 || ^10.0.0",
"reflect-metadata": "^0.1.13",
"telegraf": "^4.0.0",
"typescript": "^4.1.2 || ^5.0.2"
2019-02-28 11:29:26 +03:00
}
2020-01-23 21:16:37 +03:00
}