-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "telegraf-ecosystem",
"description": "Фреймворк созданный на основе Nest.js/Typescript/Awilix для тех, кто хочет писать расширяемых telegraf ботов. В исходном коде вы найдете паттерны, конструкции и поведенческие паттерны с объяснениями",
"scripts": {
"dev": "nodemon -q",
"dev:officer-bot": "nodemon -q --config nodemon.common.json",
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"build": "rimraf dist && tsc --project tsconfig.build.json && rimraf tsconfig.build.tsbuildinfo",
"publish-to-npm": "npm run build && npm version patch && npm publish",
"fast-save": "git add . && git commit -m \"fast-save\" && git push && npm run publish-to-npm"
},
"type": "commonjs",
"license": "MIT",
"author": "Safronov Maxim (impuLssse911)",
"version": "0.0.36",
"main": "./dist/index.js",
"files": [
"dist",
"tsconfig.json",
"tsconfig.build.json"
],
"repository": {
"type": "git",
"url": "https://github.com/impuLssse/telegraf-ecosystem.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@telegraf/types": "^7.1.0",
"awilix": "^12.0.3",
"dotenv": "^16.4.5",
"ioredis": "^5.4.1",
"npm": "^10.9.1",
"string-format": "^2.0.0",
"telegram-keyboard": "^2.3.5",
"ts-morph": "^24.0.0",
"winston": "^3.17.0"
},
"peerDependencies": {
"@telegraf/types": "^7.1.0",
"telegraf": "^4.16.3"
},
"devDependencies": {
"@types/node": "^22.7.5",
"autoprefixer": "^10.4.20",
"chalk": "^4.1.2",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.15",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"vitepress": "^1.5.0",
"vitepress-plugin-tabs": "^0.5.0"
},
"keywords": [
"telegraf",
"telegram",
"telegram bot api",
"bot",
"botapi",
"bot framework",
"telegraf-ecosystem"
]
}