-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 899 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
{
"name": "@embr-dev/mail-service",
"version": "1.0.0",
"description": "A lightweight server and api to send emails utilizing cloudflare workers.",
"author": "Embr Development Group",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"worker deploy": "node deploy",
"worker dev": "wrangler dev",
"worker start": "wrangler dev",
"build": "tsc --project tsconfig.json"
},
"devDependencies": {
"typescript": "^5.5.4",
"wrangler": "^3.60.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/embr-dev/mail-service.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/embr-dev/mail-service/issues"
},
"homepage": "https://github.com/embr-dev/mail-service#readme"
}