-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
69 lines (69 loc) · 2.07 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
61
62
63
64
65
66
67
68
69
{
"name": "@emailjs/browser",
"version": "4.4.1",
"description": "Official EmailJS SDK for browsers",
"private": false,
"author": "EmailJS",
"contributors": [
"Sergey Khomushin <sergey@emailjs.com> (https://www.emailjs.com)"
],
"homepage": "https://www.emailjs.com",
"license": "BSD-3-Clause",
"main": "cjs/index.js",
"types": "es/index.d.ts",
"module": "es/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/emailjs-com/emailjs-sdk.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build:clean": "rm -rf es && rm -rf cjs && rm -rf dist",
"build:version": "./set-version.sh $npm_package_version",
"build:ts": "tsc --declaration --project ./tsconfig.build.json && npm run build:version es",
"build:cjs": "tsc --module commonjs --outDir cjs --project ./tsconfig.build.json && npm run build:version cjs",
"build:lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"build:bundle": "rollup -c",
"build": "npm run build:clean && npm run build:lint && npm run build:ts && npm run build:cjs && npm run build:bundle",
"test": "jest --coverage --no-cache",
"lint": "tsc --noEmit && eslint src"
},
"keywords": [
"js email",
"es6 email",
"ts email",
"javascript email",
"typescript email",
"emailjs",
"email templates",
"send email",
"send email from js",
"emailjs-com"
],
"devDependencies": {
"@babel/preset-env": "^7.24.8",
"@babel/preset-typescript": "^7.24.7",
"@happy-dom/jest-environment": "^14.12.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"core-js": "^3.37.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"rollup": "^4.18.1",
"typescript": "^5.5.3"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"printWidth": 100
}
}