-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.27 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.27 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": "mail2telegram",
"type": "module",
"version": "1.0.0",
"description": "Forward email to telegram",
"author": "TBXark",
"license": "MIT",
"homepage": "https://github.com/TBXark/mail2telegram",
"repository": {
"type": "git",
"url": "https://github.com/TBXark/mail2telegram"
},
"exports": {
"import": "./index.js"
},
"main": "src/index.ts",
"files": [
"src/index.ts"
],
"scripts": {
"dev": "wrangler dev",
"pub": "wrangler deploy",
"build": "node esbuild.config.js",
"lint": "eslint --fix src/index.ts src",
"test": "tsx src/test.ts",
"wrangler": "wrangler"
},
"dependencies": {
"@telegram-apps/init-data-node": "^2.0.10",
"html-to-text": "^9.0.5",
"itty-router": "^5.0.22",
"postal-mime": "^2.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "^5.4.1",
"@cloudflare/workers-types": "^4.20251008.0",
"@types/html-to-text": "^9.0.4",
"esbuild": "^0.25.10",
"eslint": "^9.37.0",
"eslint-plugin-format": "^1.0.2",
"telegram-bot-api-types": "^9.2.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"wrangler": "^4.59.1"
}
}