-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.67 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.67 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@upyo/sendgrid",
"version": "0.5.0",
"description": "SendGrid transport for Upyo email library",
"keywords": [
"email",
"mail",
"sendmail",
"sendgrid"
],
"license": "MIT",
"author": {
"name": "Hong Minhee",
"email": "hong@minhee.org",
"url": "https://hongminhee.org/"
},
"homepage": "https://upyo.org/transports/sendgrid",
"repository": {
"type": "git",
"url": "git+https://github.com/dahlia/upyo.git",
"directory": "packages/sendgrid/"
},
"bugs": {
"url": "https://github.com/dahlia/upyo/issues"
},
"funding": [
"https://github.com/sponsors/dahlia"
],
"engines": {
"node": ">=20.0.0",
"bun": ">=1.2.0",
"deno": ">=2.3.0"
},
"files": [
"dist/",
"package.json",
"README.md"
],
"type": "module",
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"peerDependencies": {
"@upyo/core": "workspace:*"
},
"devDependencies": {
"@dotenvx/dotenvx": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:"
},
"scripts": {
"build": "tsdown",
"prepack": "tsdown",
"prepublish": "tsdown",
"test": "tsdown && dotenvx run --ignore=MISSING_ENV_FILE -- node --experimental-transform-types --test",
"test:bun": "tsdown && bun test --timeout=30000 --env-file=.env",
"test:deno": "deno test --allow-env --allow-net --env-file=.env"
}
}