-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.24 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
{
"name": "@nurodev/mailersend.ts",
"version": "0.1.9",
"description": "Lightweight MailerSend Node.js api written in TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/nurodev/mailersend.ts.git"
},
"homepage": "https://github.com/nurodev/mailersend.ts",
"bugs": "https://github.com/nurodev/mailersend.ts/issues",
"author": {
"name": "nurodev",
"email": "[email protected]",
"url": "https://nuro.dev"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"mailersend",
"typescript"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"build:prod": "cross-env NODE_ENV=production yarn build",
"test": "vitest run",
"test:watch": "vitest watch",
"test:ui": "vitest watch --ui"
},
"dependencies": {
"undici": "^5.20.0"
},
"devDependencies": {
"@types/node": "^18.6.1",
"@vitest/ui": "^0.19.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"minifaker": "^1.34.1",
"rimraf": "^3.0.2",
"tsup": "^6.2.0",
"typescript": "^4.7.4",
"vitest": "^0.19.1"
}
}