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
38 lines (38 loc) · 1.07 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.07 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": "^17.0.5",
"typedoc": "0.28.17"
},
"devDependencies": {
"@babel/preset-env": "^7.29.0",
"@cloudflare/vitest-pool-workers": "^0.12.14",
"@cloudflare/workers-types": "^4.20260227.0",
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"esbuild": "^0.27.3",
"esbuild-plugin-babel": "^0.2.3",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "4.0.18"
}
}