From 5a33155d2edfa3f69c74198c401babaa0ea607d4 Mon Sep 17 00:00:00 2001 From: Lukas May Date: Fri, 6 Mar 2026 20:13:47 +0100 Subject: [PATCH] chore: Fix package.json publish warnings (npm pkg fix) --- package.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 517df24..5a2fefb 100644 --- a/package.json +++ b/package.json @@ -5,20 +5,24 @@ "type": "module", "repository": { "type": "git", - "url": "git@gitlab.com:carealytix/tools/codewalkers.git" + "url": "git+ssh://git@gitlab.com/carealytix/tools/codewalkers.git" }, "license": "UNLICENSED", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "restricted" }, + "files": [ + "apps/server/dist/", + "drizzle/" + ], "workspaces": [ "apps/*", "packages/*" ], "main": "./apps/server/dist/index.js", "bin": { - "cw": "./apps/server/dist/bin/cw.js" + "cw": "apps/server/dist/bin/cw.js" }, "scripts": { "build": "tsc",