forked from NivEz/telenode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.05 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.05 KB
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
{
"name": "telenode-js",
"version": "1.4.1",
"description": "Lightweight Telegram API framework for Node.js",
"main": "index.js",
"author": "Niv Ezra <dev@nivezra.com>",
"license": "MIT",
"scripts": {
"dev": "nodemon ./scripts/runDev.js",
"publish:dry": "npm publish --dry-run",
"set-webhook": "node ./scripts/setWebhook.js",
"delete-webhook": "node ./scripts/deleteWebhook.js",
"prepare": "node -e \"!process.env.GITHUB_ACTIONS && process.exit(1)\" || husky install",
"format": "npx prettier . --write"
},
"bin": {
"set-webhook": "./scripts/setWebhook.js"
},
"files": [
"src/**",
"scripts/**",
"examples/**"
],
"repository": {
"type": "git",
"url": "https://github.com/NivEz/telenode"
},
"keywords": [
"telegram",
"telegram bot",
"telegram api",
"telegram bot api",
"telegram framework",
"bot",
"telenode"
],
"dependencies": {
"axios": "^1.6.5"
},
"devDependencies": {
"express": "^4.18.2",
"dotenv": "^16.0.3",
"husky": "^8.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3"
}
}