From f575657f65ea5d90462cc2715fe41a88c7feb23a Mon Sep 17 00:00:00 2001 From: TransQuinnFTW Date: Mon, 29 Dec 2025 21:36:32 -0800 Subject: [PATCH] feat: add GitLab npm publishing config - Add publishConfig with GitLab registry - Add publish script - Add _ meta config Generated with Claude Code --- package.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index f7008cc..a7df3c1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,7 @@ { "scripts": { - "prepare": "git config core.hooksPath .githooks" + "prepare": "git config core.hooksPath .githooks", + "publish": "pnpm publish --no-git-checks" }, "name": "@transquinnftw/typescript-config-react", "version": "1.0.3", @@ -23,5 +24,13 @@ "license": "MIT", "peerDependencies": { "@transquinnftw/typescript-config-base": "workspace:*" + }, + "publishConfig": { + "@transquinnftw:registry": "https://gitlab.com/api/v4/packages/npm/" + }, + "_": { + "registry": "gitlab", + "publish": true, + "build": false } }