-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.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
{
"name": "telegram-logger-ts",
"version": "2.1.1",
"description": "use telegram to monitor your nodejs application",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"release:patch": "npm version patch && git push --tags",
"release:minor": "npm version minor && git push --tags",
"release:major": "npm version major && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/midoelhawy/telegram-logger.git"
},
"keywords": [
"telegram",
"logs",
"logger",
"nodejs",
"typescript",
"telegram-logger",
"application-monitoring"
],
"author": "Ahmed Hekal",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/midoelhawy/telegram-logger/issues"
},
"homepage": "https://github.com/midoelhawy/telegram-logger#readme",
"dependencies": {
"axios": "^1.1.3",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/node": "^18.11.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}