-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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
{
"name": "@cemalgnlts/mailjs",
"version": "3.0.1",
"description": "A JavaScript wrapper around the [mail.tm](https://docs.mail.tm/) api.",
"type": "module",
"source": "src/index.ts",
"main": "dist/mailjs.cjs",
"module": "dist/mailjs.mjs",
"browser": "dist/mailjs.min.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/mailjs.mjs",
"require": "./dist/mailjs.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "rollup --config",
"postbuild": "node tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cemalgnlts/Mailjs.git"
},
"keywords": [
"mail",
"temp-mail"
],
"files": [
"README.md",
"dist"
],
"author": "Cemal",
"license": "MIT",
"bugs": {
"url": "https://github.com/cemalgnlts/Mailjs/issues"
},
"homepage": "https://github.com/cemalgnlts/Mailjs#readme",
"dependencies": {
"eventsource": "^2.0.2"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"rollup": "^4.1.4",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}