forked from nikhiljohn10/telegram-bot-worker
-
-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 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
{
"name": "worker",
"version": "7.19.0",
"private": true,
"description": "serverless telegram bot on cf workers",
"main": "./dist/worker.mjs",
"module": "./dist/worker.mjs",
"type": "module",
"scripts": {
"build": "esbuild ./src/index.ts --bundle --outfile=../../dist/index.js --platform=neutral --format=esm",
"lint": "eslint src",
"test": "vitest --config vitest.config.js"
},
"author": "codebam",
"license": "Apache-2.0",
"dependencies": {
"@codebam/cf-workers-telegram-bot": "file:../main",
"marked": "^16.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.27.2",
"@cloudflare/vitest-pool-workers": "^0.8.47",
"@cloudflare/workers-types": "^4.20250628.0",
"@eslint/js": "^9.30.0",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"esbuild": "^0.27.0",
"esbuild-plugin-babel": "^0.2.3",
"esbuild-plugin-glob": "^2.2.3",
"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"
}
}