@bobfrankston/mailx 1.0.3 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +3 -2
  2. package/package.json +3 -13
package/README.md CHANGED
@@ -76,11 +76,12 @@ If `config.json` doesn't exist, settings default to `~/.mailx/settings.jsonc`.
76
76
  "intervalMinutes": 5, // Full sync interval
77
77
  "historyDays": 30 // Days of history (0 = all)
78
78
  },
79
+ // UI preferences
79
80
  "ui": {
80
- "theme": "dark",
81
+ "theme": "system", // "system" (follows OS), "dark", or "light"
81
82
  "folderWidth": 220,
82
83
  "listViewerSplit": 40,
83
- "fontSize": 14
84
+ "fontSize": 15
84
85
  },
85
86
  // Auto-populated when you click "Always allow from sender/domain"
86
87
  "remoteAllowList": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/mailx",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Local-first email client with IMAP sync and standalone native app",
5
5
  "type": "module",
6
6
  "main": "bin/mailx.js",
@@ -23,13 +23,8 @@
23
23
  "@bobfrankston/miscinfo": "^1.0.5",
24
24
  "@bobfrankston/oauthsupport": "^1.0.10",
25
25
  "@bobfrankston/certsupport": "^1.0.35",
26
- "better-sqlite3": "^11.0.0",
27
- "express": "^4.21.0",
28
- "jsonc-parser": "^3.3.1",
29
26
  "mailparser": "^3.7.2",
30
- "nodemailer": "^7.0.0",
31
- "quill": "^2.0.3",
32
- "ws": "^8.18.0"
27
+ "quill": "^2.0.3"
33
28
  },
34
29
  "devDependencies": {
35
30
  "@types/mailparser": "^3.4.6"
@@ -52,12 +47,7 @@
52
47
  "@bobfrankston/miscinfo": "file:../../projects/npm/miscinfo",
53
48
  "@bobfrankston/oauthsupport": "file:../../projects/oauth/oauthsupport",
54
49
  "@bobfrankston/certsupport": "file:../../projects/nodejs/certsupport",
55
- "better-sqlite3": "^11.0.0",
56
- "express": "^4.21.0",
57
- "jsonc-parser": "^3.3.1",
58
50
  "mailparser": "^3.7.2",
59
- "nodemailer": "^7.0.0",
60
- "quill": "^2.0.3",
61
- "ws": "^8.18.0"
51
+ "quill": "^2.0.3"
62
52
  }
63
53
  }