mailos 0.1.42 → 0.1.44

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": "mailos",
3
- "version": "0.1.42",
3
+ "version": "0.1.44",
4
4
  "description": "Command-line email client with AI integration and support for multiple providers",
5
5
  "keywords": [
6
6
  "email",
@@ -29,9 +29,14 @@
29
29
  },
30
30
  "scripts": {
31
31
  "postinstall": "node scripts/install.js",
32
- "preuninstall": "node scripts/uninstall.js",
33
- "prepublishOnly": "rm -rf bin"
32
+ "preuninstall": "node scripts/uninstall.js"
34
33
  },
34
+ "files": [
35
+ "bin/",
36
+ "scripts/",
37
+ "index.js",
38
+ "README.md"
39
+ ],
35
40
  "engines": {
36
41
  "node": ">=14.0.0"
37
42
  },
@@ -44,9 +49,5 @@
44
49
  "x64",
45
50
  "arm64"
46
51
  ],
47
- "dependencies": {
48
- "node-fetch": "^2.6.7",
49
- "tar": "^6.1.11",
50
- "rimraf": "^3.0.2"
51
- }
52
+ "dependencies": {}
52
53
  }
package/mailos-0.1.20.tgz DELETED
Binary file
package/publish.sh DELETED
@@ -1,28 +0,0 @@
1
- #!/bin/bash
2
-
3
- echo "📦 Preparing to publish mailos to NPM..."
4
-
5
- # Clean up any existing binaries
6
- rm -rf bin/
7
-
8
- # Check if logged in to NPM
9
- if ! npm whoami >/dev/null 2>&1; then
10
- echo "❌ Not logged in to NPM. Please run 'npm login' first."
11
- exit 1
12
- fi
13
-
14
- # Dry run first
15
- echo "Running dry-run..."
16
- npm publish --dry-run
17
-
18
- echo ""
19
- echo "📋 Review the above output. Continue with publish? (y/N)"
20
- read -r response
21
-
22
- if [[ "$response" =~ ^([yY][eE][sS]|[yY])$ ]]; then
23
- echo "Publishing to NPM..."
24
- npm publish
25
- echo "✅ Published successfully!"
26
- else
27
- echo "❌ Publish cancelled."
28
- fi