@kononenko-e/email-mcp 0.2.4 → 0.2.5
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 +39 -36
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kononenko-e/email-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"mcpName": "io.github.kononenko-e/email-mcp",
|
|
5
5
|
"description": "Email MCP server with IMAP + SMTP support",
|
|
6
6
|
"type": "module",
|
|
@@ -10,6 +10,42 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"dist"
|
|
12
12
|
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"dev": "tsx watch src/main.ts",
|
|
15
|
+
"build": "tsc -p tsconfig.build.json",
|
|
16
|
+
"start": "node dist/main.js",
|
|
17
|
+
"typecheck": "tsc --noEmit",
|
|
18
|
+
"lint": "eslint src/",
|
|
19
|
+
"lint:fix": "eslint src/ --fix",
|
|
20
|
+
"format": "biome format --write src/",
|
|
21
|
+
"format:check": "biome check src/",
|
|
22
|
+
"test": "vitest run",
|
|
23
|
+
"test:watch": "vitest",
|
|
24
|
+
"test:coverage": "vitest run --coverage",
|
|
25
|
+
"test:integration": "vitest run --config vitest.config.integration.ts",
|
|
26
|
+
"test:all": "vitest run && vitest run --config vitest.config.integration.ts",
|
|
27
|
+
"check": "biome check src/ && eslint src/",
|
|
28
|
+
"report": "mkdir -p reports && biome check src/ --reporter=json > reports/biome.json 2>&1; eslint src/ -f json -o reports/eslint.json; actionlint -format '{{json .}}' > reports/actionlint.json 2>&1; pnpm test",
|
|
29
|
+
"commit": "cog commit",
|
|
30
|
+
"changelog": "cog changelog",
|
|
31
|
+
"version:check": "cog check",
|
|
32
|
+
"version:bump": "cog bump --auto",
|
|
33
|
+
"version:bump:minor": "cog bump --minor",
|
|
34
|
+
"version:bump:patch": "cog bump --patch",
|
|
35
|
+
"version:log": "cog log",
|
|
36
|
+
"prepare": "lefthook install || true",
|
|
37
|
+
"hooks:install": "lefthook install --force",
|
|
38
|
+
"hooks:uninstall": "lefthook uninstall",
|
|
39
|
+
"docker:build": "docker build -t codefuturist/email-mcp .",
|
|
40
|
+
"docker:run": "docker run --rm -i -v ~/.config/email-mcp:/home/node/.config/email-mcp:ro codefuturist/email-mcp",
|
|
41
|
+
"docker:compose": "docker compose up",
|
|
42
|
+
"docker:clean": "docker images --format '{{.Repository}}:{{.Tag}}' | grep email-mcp | xargs docker rmi -f 2>/dev/null; true",
|
|
43
|
+
"docker:prune": "docker image prune -f && docker buildx prune -f",
|
|
44
|
+
"release:check": "goreleaser check",
|
|
45
|
+
"release:snapshot": "goreleaser release --snapshot --clean && pnpm docker:clean",
|
|
46
|
+
"release:dry-run": "goreleaser release --skip=publish --clean && pnpm docker:clean",
|
|
47
|
+
"prepublishOnly": "tsc -p tsconfig.build.json"
|
|
48
|
+
},
|
|
13
49
|
"keywords": [
|
|
14
50
|
"email",
|
|
15
51
|
"mcp",
|
|
@@ -63,38 +99,5 @@
|
|
|
63
99
|
"engines": {
|
|
64
100
|
"node": ">=24.0.0"
|
|
65
101
|
},
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
"build": "tsc -p tsconfig.build.json",
|
|
69
|
-
"start": "node dist/main.js",
|
|
70
|
-
"typecheck": "tsc --noEmit",
|
|
71
|
-
"lint": "eslint src/",
|
|
72
|
-
"lint:fix": "eslint src/ --fix",
|
|
73
|
-
"format": "biome format --write src/",
|
|
74
|
-
"format:check": "biome check src/",
|
|
75
|
-
"test": "vitest run",
|
|
76
|
-
"test:watch": "vitest",
|
|
77
|
-
"test:coverage": "vitest run --coverage",
|
|
78
|
-
"test:integration": "vitest run --config vitest.config.integration.ts",
|
|
79
|
-
"test:all": "vitest run && vitest run --config vitest.config.integration.ts",
|
|
80
|
-
"check": "biome check src/ && eslint src/",
|
|
81
|
-
"report": "mkdir -p reports && biome check src/ --reporter=json > reports/biome.json 2>&1; eslint src/ -f json -o reports/eslint.json; actionlint -format '{{json .}}' > reports/actionlint.json 2>&1; pnpm test",
|
|
82
|
-
"commit": "cog commit",
|
|
83
|
-
"changelog": "cog changelog",
|
|
84
|
-
"version:check": "cog check",
|
|
85
|
-
"version:bump": "cog bump --auto",
|
|
86
|
-
"version:bump:minor": "cog bump --minor",
|
|
87
|
-
"version:bump:patch": "cog bump --patch",
|
|
88
|
-
"version:log": "cog log",
|
|
89
|
-
"hooks:install": "lefthook install --force",
|
|
90
|
-
"hooks:uninstall": "lefthook uninstall",
|
|
91
|
-
"docker:build": "docker build -t codefuturist/email-mcp .",
|
|
92
|
-
"docker:run": "docker run --rm -i -v ~/.config/email-mcp:/home/node/.config/email-mcp:ro codefuturist/email-mcp",
|
|
93
|
-
"docker:compose": "docker compose up",
|
|
94
|
-
"docker:clean": "docker images --format '{{.Repository}}:{{.Tag}}' | grep email-mcp | xargs docker rmi -f 2>/dev/null; true",
|
|
95
|
-
"docker:prune": "docker image prune -f && docker buildx prune -f",
|
|
96
|
-
"release:check": "goreleaser check",
|
|
97
|
-
"release:snapshot": "goreleaser release --snapshot --clean && pnpm docker:clean",
|
|
98
|
-
"release:dry-run": "goreleaser release --skip=publish --clean && pnpm docker:clean"
|
|
99
|
-
}
|
|
100
|
-
}
|
|
102
|
+
"packageManager": "pnpm@9.15.0"
|
|
103
|
+
}
|