@weijingwei/email 1.0.6 → 1.0.7
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 +3 -5
- package/dist/cli.js +0 -66626
package/package.json
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@weijingwei/email",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "Email MCP Server - SMTP/IMAP email operations via MCP protocol",
|
|
5
5
|
"main": "dist/bundle.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"email-mcp": "./dist/
|
|
7
|
+
"email-mcp": "./dist/bundle.js"
|
|
8
8
|
},
|
|
9
9
|
"files": ["dist", "README.md"],
|
|
10
10
|
"scripts": {
|
|
11
|
-
"build": "
|
|
12
|
-
"build:mcp": "esbuild src/index.ts --bundle --platform=node --outfile=dist/bundle.js --format=cjs",
|
|
13
|
-
"build:cli": "esbuild src/cli.ts --bundle --platform=node --outfile=dist/cli.js --format=cjs --banner:js=\"#!/usr/bin/env node\"",
|
|
11
|
+
"build": "esbuild src/index.ts --bundle --platform=node --outfile=dist/bundle.js --format=cjs",
|
|
14
12
|
"prepublishOnly": "npm run build"
|
|
15
13
|
},
|
|
16
14
|
"keywords": ["mcp", "model-context-protocol", "email", "smtp", "imap", "claude", "ai"],
|