Standardize build and binary references

This commit is contained in:
olaservo
2025-04-14 21:12:35 -07:00
parent c19925b8f0
commit e5477c2bd4
3 changed files with 38 additions and 43 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@modelcontextprotocol/server-redis",
"version": "0.1.0",
"version": "0.1.1",
"description": "MCP server for using Redis",
"license": "MIT",
"author": "Anthropic, PBC (https://anthropic.com)",
@@ -8,13 +8,13 @@
"bugs": "https://github.com/modelcontextprotocol/servers/issues",
"type": "module",
"bin": {
"redis": "./build/index.js"
"mcp-server-redis": "dist/index.js"
},
"files": [
"build"
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x build/*.js",
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},