From f1b7dc8b31e1b217e9281bbfdec182d237755d72 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Sat, 25 Apr 2020 14:56:04 +0200 Subject: [PATCH] plugins/graphiql: add publishing config --- plugins/graphiql/package.json | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/plugins/graphiql/package.json b/plugins/graphiql/package.json index 8f50c59e66..a068eb24c0 100644 --- a/plugins/graphiql/package.json +++ b/plugins/graphiql/package.json @@ -1,10 +1,23 @@ { "name": "@backstage/plugin-graphiql", + "description": "Backstage plugin for browsing GraphQL APIs", "version": "0.1.1-alpha.4", + "private": false, + "publishConfig": { + "access": "public" + }, + "homepage": "https://github.com/spotify/backstage/tree/master/plugins/graphiql#readme", + "repository": { + "type": "git", + "url": "https://github.com/spotify/backstage", + "directory": "plugins/graphiql" + }, + "keywords": [ + "backstage" + ], + "license": "Apache-2.0", "main": "dist/index.cjs.js", "types": "dist/index.d.ts", - "license": "Apache-2.0", - "private": true, "scripts": { "build": "backstage-cli plugin:build", "start": "backstage-cli plugin:serve", @@ -34,5 +47,8 @@ "react": "16.13.1", "react-dom": "16.13.1", "react-use": "^13.0.0" - } + }, + "files": [ + "dist" + ] }