-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
41 lines (41 loc) · 980 Bytes
/
package.json
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
{
"name": "mail2telegram",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"author": "TBXark",
"repository": {
"type": "git",
"url": "https://github.com/TBXark/mail2telegram"
},
"homepage": "https://github.com/TBXark/mail2telegram",
"description": "Forward email to telegram",
"scripts": {
"dev": "wrangler dev",
"pub": "wrangler deploy",
"build": "node esbuild.config.js",
"lint": "eslint --fix index.js src"
},
"license": "MIT",
"dependencies": {
"@telegram-apps/init-data-node": "^1.1.1",
"html-to-text": "^9.0.5",
"itty-router": "^5.0.18",
"postal-mime": "^2.3.2"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.1",
"esbuild": "^0.24.0",
"eslint": "^9.14.0",
"eslint-plugin-format": "^0.1.2",
"telegram-bot-api-jsdoc": "^7.11.0",
"typescript": "^5.6.3",
"wrangler": "^3.87.0"
},
"files": [
"index.js"
],
"exports": {
"import": "./index.js"
}
}