-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.29 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
47
{
"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": {
"@tma.js/init-data-node": "^2.0.8",
"html-to-text": "^10.0.0",
"itty-router": "^5.0.24",
"postal-mime": "^2.7.5"
},
"devDependencies": {
"@antfu/eslint-config": "^9.1.0",
"@cloudflare/workers-types": "^4.20260702.1",
"@types/html-to-text": "^9.0.4",
"@types/node": "^26.1.0",
"esbuild": "^0.28.1",
"eslint": "^10.6.0",
"eslint-plugin-format": "^2.0.1",
"telegram-bot-api-types": "^10.1.0",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"wrangler": "^4.107.0"
}
}