-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
60 lines (60 loc) · 1.47 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "resend",
"version": "4.1.1-canary.0",
"description": "Node.js library for the Resend API",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist/**"],
"engines": {
"node": ">=18"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"test": "jest",
"test:watch": "jest --watch",
"format:apply": "biome check --write .",
"format:check": "biome format .",
"format": "biome format --write .",
"lint": "biome check .",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/resendlabs/resend-node.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/resendlabs/resend-node/issues"
},
"homepage": "https://github.com/resendlabs/resend-node#readme",
"dependencies": {
"@react-email/render": "1.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/jest": "29.5.12",
"@types/node": "18.19.44",
"@types/react": "18.3.3",
"jest": "29.7.0",
"jest-fetch-mock": "3.0.3",
"ts-jest": "29.2.4",
"ts-node": "10.9.2",
"tsup": "7.2.0",
"typescript": "5.5.4"
},
"packageManager": "[email protected]"
}