From 71db883457ab459f724c566aa5729077f9a0fba6 Mon Sep 17 00:00:00 2001 From: smartass Date: Fri, 12 Jun 2026 02:49:25 +0500 Subject: [PATCH] chore: package metadata for npm publish --- package.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/package.json b/package.json index b494d02..3a862b3 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,22 @@ "version": "0.1.0", "description": "MCP server for PostgreSQL and MySQL with named connections and SSH tunnels", "license": "MIT", + "author": "smartass", + "repository": { + "type": "git", + "url": "git+https://git.smartass.pw/admin/dbmole-mcp.git" + }, + "homepage": "https://git.smartass.pw/admin/dbmole-mcp", + "keywords": [ + "mcp", + "model-context-protocol", + "postgres", + "postgresql", + "mysql", + "ssh-tunnel", + "database", + "stdio" + ], "type": "module", "bin": { "dbmole-mcp": "dist/index.js" @@ -14,6 +30,7 @@ "node": ">=20" }, "scripts": { + "prepublishOnly": "npm run lint && npm run typecheck && npm run test:unit && npm run build", "build": "tsup", "dev": "tsx src/index.ts", "lint": "biome check src test",