mailchannels-sdk 0.7.2 → 0.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/mailchannels.d.mts +872 -882
- package/dist/mailchannels.mjs +2037 -2309
- package/package.json +12 -16
- package/dist/mailchannels.d.ts +0 -1989
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mailchannels-sdk",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.4",
|
|
4
4
|
"description": "Node.js SDK to integrate MailChannels API into your JavaScript or TypeScript server-side applications.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"exports": {
|
|
27
27
|
".": {
|
|
28
28
|
"types": "./dist/mailchannels.d.mts",
|
|
29
|
-
"
|
|
29
|
+
"default": "./dist/mailchannels.mjs"
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
|
-
"types": "./dist/mailchannels.d.
|
|
32
|
+
"types": "./dist/mailchannels.d.mts",
|
|
33
33
|
"files": [
|
|
34
34
|
"dist"
|
|
35
35
|
],
|
|
@@ -37,30 +37,26 @@
|
|
|
37
37
|
"ofetch": "^2.0.0-alpha.3"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@eslint
|
|
41
|
-
"@stylistic/eslint-plugin": "^5.7.1",
|
|
40
|
+
"@stylistic/eslint-plugin": "^5.8.0",
|
|
42
41
|
"@types/markdown-it": "^14.1.2",
|
|
43
|
-
"@types/node": "^25.
|
|
44
|
-
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
|
45
|
-
"@typescript-eslint/parser": "^8.54.0",
|
|
42
|
+
"@types/node": "^25.2.3",
|
|
46
43
|
"@vitest/coverage-v8": "^4.0.18",
|
|
47
44
|
"changelogen": "^0.6.2",
|
|
48
|
-
"eslint": "^9.39.2",
|
|
49
|
-
"eslint-plugin-import-x": "^4.16.1",
|
|
50
45
|
"jiti": "^2.6.1",
|
|
46
|
+
"obuild": "^0.4.27",
|
|
47
|
+
"oxlint": "^1.47.0",
|
|
51
48
|
"scule": "^1.3.0",
|
|
52
49
|
"typescript": "^5.9.3",
|
|
53
|
-
"
|
|
54
|
-
"vitepress": "^v2.0.0-alpha.15",
|
|
50
|
+
"vitepress": "^2.0.0-alpha.16",
|
|
55
51
|
"vitepress-plugin-group-icons": "^1.7.1",
|
|
56
|
-
"vitepress-plugin-llms": "^1.
|
|
52
|
+
"vitepress-plugin-llms": "^1.11.0",
|
|
57
53
|
"vitest": "^4.0.18"
|
|
58
54
|
},
|
|
59
55
|
"scripts": {
|
|
60
|
-
"build": "
|
|
56
|
+
"build": "obuild",
|
|
61
57
|
"release": "pnpm lint && pnpm test && pnpm build && changelogen --release && git push --follow-tags",
|
|
62
|
-
"lint": "
|
|
63
|
-
"lint:fix": "
|
|
58
|
+
"lint": "oxlint",
|
|
59
|
+
"lint:fix": "oxlint --fix",
|
|
64
60
|
"test": "vitest run --reporter=verbose --coverage",
|
|
65
61
|
"test:types": "tsc --noEmit",
|
|
66
62
|
"test:watch": "vitest watch",
|