From 74837a621814f3ea901bffca664ca395c626fdd4 Mon Sep 17 00:00:00 2001 From: BWM0223 Date: Sat, 13 Jun 2026 14:51:01 -0700 Subject: [PATCH] fix: add missing metadata fields to package.json --- package.json | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index 2d1a6fd6..c37bec32 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,18 @@ { - "name": "@geoengine/openapi-client-dev", - "description": "Dev wrapper for @geoengine/openapi-client", - "private": true, - "workspaces": [ - "typescript" - ], - "main": "./typescript/index.js", - "typings": "./typescript/dist/index.d.ts", - "module": "./typescript/dist/esm/index.js", - "scripts": { - "build": "npm run build --workspace=typescript", - "prepare": "npm run build --workspace=typescript" - } + "name": "@geoengine/openapi-client-dev", + "description": "Dev wrapper for @geoengine/openapi-client", + "private": true, + "workspaces": [ + "typescript" + ], + "main": "./typescript/index.js", + "typings": "./typescript/dist/index.d.ts", + "module": "./typescript/dist/esm/index.js", + "scripts": { + "build": "npm run build --workspace=typescript", + "prepare": "npm run build --workspace=typescript" + }, + "bugs": { + "url": "https://github.com/geo-engine/openapi-client/issues" + } }