forked from thepradipvc/thundermail-node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"name": "thundermail",
"version": "2.0.0",
"description": "Node.js library for the Thunder Mail API",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"dev": "vitest",
"test": "vitest run",
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"ci": "pnpm run lint && pnpm run build",
"release": "pnpm run ci && changeset publish"
},
"repository": {
"type": "git",
"url": "https://github.com/thepradipvc/thundermail-node-sdk"
},
"author": "Pradip Chaudhary",
"license": "MIT",
"bugs": {
"url": "https://github.com/thepradipvc/thundermailnode-sdk/issues"
},
"homepage": "https://github.com/thepradipvc/thundermail-node-sdk#readme",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/html-to-text": "^9.0.4",
"@types/node": "^20.11.30",
"@types/react": "^18.2.74",
"tsup": "^6.7.0",
"typescript": "^4.9.5",
"vitest": "^1.3.1"
},
"dependencies": {
"@react-email/render": "^0.0.12"
}
}