-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 932 Bytes
/
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": "tell-js",
"version": "1.1.3",
"description": "A logging library to send alerts to a Telegram bot.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ritiksahni/tell.js.git"
},
"keywords": [
"logging",
"telegram",
"nodejs"
],
"author": "Ritik Sahni",
"license": "ISC",
"bugs": {
"url": "https://github.com/ritiksahni/tell.js/issues",
"email": "[email protected]"
},
"sponsor": {
"url": "https://www.buymeacoffee.com/ritiksahni"
},
"homepage": "https://github.com/ritiksahni/tell.js",
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/node": "^22.5.5",
"typescript": "^5.6.2"
}
}