@kernhq/module-mail 0.3.1 → 0.3.2

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.
Files changed (1) hide show
  1. package/package.json +12 -5
package/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "@kernhq/module-mail",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Kern mail module: outbound providers (SMTP/Mailgun/SES/Postmark/Resend), MJML templates, delivery queue, bounces & suppressions",
5
- "homepage": "https://kernaio.com",
5
+ "homepage": "https://github.com/KernAIO/module-mail#readme",
6
6
  "license": "AGPL-3.0-only",
7
7
  "type": "module",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "https://github.com/KernAIO/modules",
11
- "directory": "packages/mail"
10
+ "url": "git+https://github.com/KernAIO/module-mail.git"
12
11
  },
13
12
  "publishConfig": {
14
13
  "access": "public"
@@ -78,6 +77,8 @@
78
77
  }
79
78
  },
80
79
  "devDependencies": {
80
+ "@biomejs/biome": "^2.0.0",
81
+ "@changesets/cli": "^2.27.0",
81
82
  "@kernhq/tsconfig": "^0.1.0",
82
83
  "@kernhq/ui": "^0.8.0",
83
84
  "@tanstack/svelte-query": "^6.1.0",
@@ -91,11 +92,17 @@
91
92
  "typescript": "~5.9.3",
92
93
  "vitest": "^4.0.0"
93
94
  },
95
+ "engines": {
96
+ "node": ">=24"
97
+ },
94
98
  "scripts": {
95
99
  "build": "tsc -p tsconfig.json",
96
100
  "dev": "tsc -p tsconfig.json --watch --preserveWatchOutput",
97
101
  "typecheck": "tsc -p tsconfig.json --noEmit && svelte-check --tsconfig ./tsconfig.client.json --threshold error",
98
102
  "test": "vitest run",
99
- "db:generate": "drizzle-kit generate"
103
+ "db:generate": "drizzle-kit generate",
104
+ "lint": "biome check . && node scripts/check-ranges.mjs package.json",
105
+ "format": "biome check --write .",
106
+ "changeset": "changeset"
100
107
  }
101
108
  }