forked from nikhiljohn10/telegram-bot-worker
-
-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 935 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 935 Bytes
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
{
"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": "tsc --project tsconfig.json",
"lint": "eslint src",
"test": "vitest --config vitest.config.js"
},
"author": "codebam",
"license": "Apache-2.0",
"devDependencies": {
"@babel/preset-env": "^7.26.9",
"@cloudflare/vitest-pool-workers": "^0.7.7",
"@cloudflare/workers-types": "^4.20250321.0",
"@eslint/js": "^9.22.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"esbuild": "^0.25.1",
"esbuild-plugin-babel": "^0.2.3",
"esbuild-plugin-glob": "^2.2.3",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.27.0",
"vitest": "3.0.9"
}
}