@btcemail/cli 0.3.0 → 0.5.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@btcemail/cli",
3
- "version": "0.3.0",
3
+ "version": "0.5.0",
4
4
  "description": "btc.email CLI - Spam-free email powered by Bitcoin Lightning",
5
5
  "type": "module",
6
6
  "bin": {
@@ -17,7 +17,13 @@
17
17
  "build": "tsup",
18
18
  "dev": "tsup --watch",
19
19
  "start": "node dist/index.js",
20
- "typecheck": "tsc --noEmit"
20
+ "typecheck": "tsc --noEmit",
21
+ "compile": "bun run build && bun run compile:all",
22
+ "compile:all": "bun run compile:darwin-arm64 && bun run compile:darwin-x64 && bun run compile:linux-x64 && bun run compile:windows-x64",
23
+ "compile:darwin-arm64": "bun build --compile --target=bun-darwin-arm64 ./dist/index.js --outfile ./bin/btcemail-darwin-arm64",
24
+ "compile:darwin-x64": "bun build --compile --target=bun-darwin-x64 ./dist/index.js --outfile ./bin/btcemail-darwin-x64",
25
+ "compile:linux-x64": "bun build --compile --target=bun-linux-x64 ./dist/index.js --outfile ./bin/btcemail-linux-x64",
26
+ "compile:windows-x64": "bun build --compile --target=bun-windows-x64 ./dist/index.js --outfile ./bin/btcemail-windows-x64.exe"
21
27
  },
22
28
  "keywords": [
23
29
  "btc.email",
@@ -38,15 +44,15 @@
38
44
  "directory": "packages/cli"
39
45
  },
40
46
  "dependencies": {
41
- "commander": "^12.1.0",
42
- "conf": "^13.0.1",
43
- "open": "^10.1.0",
44
- "ora": "^8.1.1",
47
+ "commander": "14.0.2",
48
+ "conf": "15.0.2",
49
+ "open": "11.0.0",
50
+ "ora": "9.0.0",
45
51
  "picocolors": "^1.1.1",
46
52
  "qrcode-terminal": "0.12.0"
47
53
  },
48
54
  "devDependencies": {
49
- "@types/node": "^22.10.2",
55
+ "@types/node": "25.0.3",
50
56
  "@types/qrcode-terminal": "0.12.2",
51
57
  "tsup": "^8.3.5",
52
58
  "typescript": "^5.7.2"