-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.93 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.93 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
72
73
74
75
76
77
78
79
80
81
{
"name": "resend",
"version": "6.6.0",
"description": "Node.js library for the Resend API",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist/**"
],
"engines": {
"node": ">=20"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22.0.0"
}
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "tsdown src/index.ts --format esm,cjs --dts",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"prepublishOnly": "pnpm run build",
"test": "vitest run",
"test:dev": "cross-env TEST_MODE=dev vitest run",
"test:record": "rimraf --glob \"**/__recordings__\" && cross-env TEST_MODE=record vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/resend/resend-node.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/resend/resend-node/issues"
},
"homepage": "https://github.com/resend/resend-node#readme",
"dependencies": {
"svix": "1.76.1"
},
"peerDependencies": {
"@react-email/render": "*"
},
"peerDependenciesMeta": {
"@react-email/render": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "2.2.5",
"@pollyjs/adapter-fetch": "6.0.7",
"@pollyjs/core": "6.0.6",
"@pollyjs/persister-fs": "6.0.6",
"@types/node": "24.10.1",
"@types/react": "19.2.0",
"cross-env": "10.1.0",
"dotenv": "17.2.3",
"pkg-pr-new": "0.0.60",
"rimraf": "6.1.0",
"tsdown": "0.16.5",
"typescript": "5.9.3",
"vitest": "3.2.4",
"vitest-fetch-mock": "0.4.5"
},
"packageManager": "pnpm@10.18.2"
}