From 0143e06e472e84abe16ec90bfa32f0fb0bf005d4 Mon Sep 17 00:00:00 2001 From: Roman Date: Sat, 18 Jan 2025 14:32:16 +0400 Subject: [PATCH] build: Fix url repository --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c93da6ad..9f00be71 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,10 @@ "license": "MIT", "description": "Generate object types, inputs, args, etc. from prisma schema file for usage with @nestjs/graphql module", "bin": "bin.js", - "repository": "https://github.com/unlight/nestjs-graphql-prisma.git", + "repository": { + "type": "git", + "url": "https://github.com/unlight/nestjs-graphql-prisma.git" + }, "bugs": { "url": "https://github.com/unlight/nestjs-graphql-prisma/issues" },