mcp-image-previewer 0.1.2 → 0.1.3

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/dist/index.js +0 -0
  2. package/package.json +30 -2
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,15 +1,43 @@
1
1
  {
2
2
  "name": "mcp-image-previewer",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "MCP server for previewing base64-encoded images from other MCP servers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
7
8
  "bin": {
8
9
  "mcp-image-previewer": "dist/index.js"
9
10
  },
11
+ "files": [
12
+ "dist",
13
+ "ui"
14
+ ],
10
15
  "scripts": {
11
16
  "build": "tsc",
12
- "start": "node dist/index.js"
17
+ "start": "node dist/index.js",
18
+ "prepublishOnly": "npm run build"
19
+ },
20
+ "keywords": [
21
+ "mcp",
22
+ "model-context-protocol",
23
+ "image",
24
+ "preview",
25
+ "viewer",
26
+ "slint",
27
+ "gui"
28
+ ],
29
+ "author": "Tasuku Suzuki <tasuku.suzuki@signal-slot.co.jp>",
30
+ "license": "MIT",
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "git+https://github.com/signal-slot/mcp-image-previewer.git"
34
+ },
35
+ "bugs": {
36
+ "url": "https://github.com/signal-slot/mcp-image-previewer/issues"
37
+ },
38
+ "homepage": "https://github.com/signal-slot/mcp-image-previewer#readme",
39
+ "engines": {
40
+ "node": ">=18"
13
41
  },
14
42
  "dependencies": {
15
43
  "@modelcontextprotocol/sdk": "^1.12.1",