diff --git a/packages/cli/package.json b/packages/cli/package.json index 9cc9ee6aa7..657315d959 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,9 +1,22 @@ { "name": "@spotify-backstage/cli", + "description": "CLI for developing Backstage plugins and apps", "version": "0.1.0", - "main": "dist", - "license": "Apache-2.0", "private": false, + "publishConfig": { + "access": "public" + }, + "homepage": "https://backstage.io", + "repository": { + "type": "git", + "url": "https://github.com/spotify/backstage", + "directory": "packages/cli" + }, + "keywords": [ + "backstage" + ], + "license": "Apache-2.0", + "main": "dist", "scripts": { "exec": "npx ts-node ./src", "build": "tsc --outDir dist --noEmit false --module CommonJS", diff --git a/packages/core/package.json b/packages/core/package.json index b6ceeb42f2..d1fb12fdec 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,8 +1,21 @@ { "name": "@spotify-backstage/core", + "description": "Core API used by Backstage plugins and apps", "version": "0.1.0", - "license": "Apache-2.0", "private": false, + "publishConfig": { + "access": "public" + }, + "homepage": "https://backstage.io", + "repository": { + "type": "git", + "url": "https://github.com/spotify/backstage", + "directory": "packages/core" + }, + "keywords": [ + "backstage" + ], + "license": "Apache-2.0", "main": "dist/cjs/index.js", "types": "dist/cjs/index.d.ts", "scripts": {