packages/{core,cli}: fill in missing package.json fields for publishing

This commit is contained in:
Patrik Oldsberg
2020-03-25 12:59:29 +01:00
parent cf446052bc
commit ca992f6cc4
2 changed files with 29 additions and 3 deletions
+15 -2
View File
@@ -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",
+14 -1
View File
@@ -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": {