resend-cli 1.3.0 → 1.4.1

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 (3) hide show
  1. package/README.md +40 -14
  2. package/dist/cli.cjs +292 -223
  3. package/package.json +10 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resend-cli",
3
- "version": "1.3.0",
3
+ "version": "1.4.1",
4
4
  "description": "The official CLI for Resend",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -17,7 +17,7 @@
17
17
  "engines": {
18
18
  "node": ">=20"
19
19
  },
20
- "packageManager": "pnpm@10.11.0",
20
+ "packageManager": "pnpm@10.32.1",
21
21
  "files": [
22
22
  "dist/cli.cjs"
23
23
  ],
@@ -30,11 +30,12 @@
30
30
  "dev:watch": "tsx --watch src/cli.ts",
31
31
  "build": "esbuild src/cli.ts --bundle --platform=node --format=cjs --minify --outfile=dist/cli.cjs",
32
32
  "build:bin": "pnpm build && pkg dist/cli.cjs --compress Brotli --target node24 --output dist/resend",
33
- "lint": "biome check",
34
- "format": "biome format --write",
33
+ "lint": "biome check .",
34
+ "lint:fix": "biome check --write .",
35
35
  "typecheck": "tsc --noEmit",
36
36
  "test": "vitest run",
37
- "test:e2e": "vitest run --config vitest.config.e2e.ts"
37
+ "test:e2e": "vitest run --config vitest.config.e2e.ts",
38
+ "prepack": "pnpm build"
38
39
  },
39
40
  "dependencies": {
40
41
  "@clack/prompts": "1.1.0",
@@ -51,11 +52,11 @@
51
52
  },
52
53
  "devDependencies": {
53
54
  "@biomejs/biome": "2.4.6",
54
- "@types/node": "22.19.15",
55
- "esbuild": "0.27.3",
56
- "tsx": "4.19.4",
55
+ "@types/node": "24.12.0",
56
+ "esbuild": "0.27.4",
57
+ "tsx": "4.21.0",
57
58
  "typescript": "5.9.3",
58
- "vitest": "3.1.4",
59
+ "vitest": "3.2.4",
59
60
  "@yao-pkg/pkg": "6.14.1"
60
61
  }
61
62
  }