forked from nikhiljohn10/telegram-bot-worker
-
-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.03 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
{
"name": "@codebam/cf-workers-telegram-bot",
"version": "9.1.3",
"description": "serverless telegram bot on cf workers",
"main": "./dist/main.js",
"module": "./dist/main.js",
"types": "./dist/types.d.ts",
"files": [
"dist",
"LICENSE",
"LICENSE_MIT",
"README.md"
],
"keywords": [
"cloudflare",
"telegram",
"worker",
"webhook"
],
"type": "module",
"private": false,
"scripts": {
"build": "tsc --project tsconfig.json",
"lint": "eslint src",
"test": "vitest --config vitest.config.js"
},
"author": "codebam",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/codebam/cf-workers-telegram-bot.git"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250628.0",
"@eslint/js": "^9.30.0",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.46.0",
"eslint": "^9.30.0",
"eslint-config-prettier": "^10.1.5",
"globals": "^16.2.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0",
"vitest": "^3.2.4"
}
}