@rynko/mcp-server 1.0.7 → 1.0.8
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/dist/index.js +1 -1
- package/package.json +4 -2
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rynko/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Rynko MCP server for Claude Desktop - manage templates and generate documents through natural conversation",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -16,9 +16,10 @@
|
|
|
16
16
|
"build": "tsc",
|
|
17
17
|
"dev": "tsc --watch",
|
|
18
18
|
"start": "node dist/index.js",
|
|
19
|
+
"bundle": "node scripts/bundle.mjs",
|
|
19
20
|
"prepublishOnly": "npm run build",
|
|
20
21
|
"lint": "eslint src --ext .ts",
|
|
21
|
-
"clean": "rimraf dist",
|
|
22
|
+
"clean": "rimraf dist dist-bundle",
|
|
22
23
|
"build:mcpb": "bash scripts/build-mcpb.sh"
|
|
23
24
|
},
|
|
24
25
|
"keywords": [
|
|
@@ -49,6 +50,7 @@
|
|
|
49
50
|
},
|
|
50
51
|
"devDependencies": {
|
|
51
52
|
"@types/node": "^20.10.0",
|
|
53
|
+
"esbuild": "^0.20.0",
|
|
52
54
|
"rimraf": "^5.0.5",
|
|
53
55
|
"typescript": "^5.3.0"
|
|
54
56
|
}
|