Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2024-04-24 14:10:10 +02:00
parent e9a1ee6fb7
commit 07e36af4d4
3 changed files with 75 additions and 75 deletions
+22 -22
View File
@@ -1,20 +1,30 @@
{
"name": "@backstage/backend-app-api",
"description": "Core API used by Backstage backend apps",
"version": "0.7.1-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
"access": "public"
},
"description": "Core API used by Backstage backend apps",
"backstage": {
"role": "node-library"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"backstage"
],
"homepage": "https://backstage.io",
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "packages/backend-app-api"
},
"license": "Apache-2.0",
"exports": {
".": "./src/index.ts",
"./alpha": "./src/alpha.ts",
"./package.json": "./package.json"
},
"main": "src/index.ts",
"types": "src/index.ts",
"typesVersions": {
"*": {
"alpha": [
@@ -25,16 +35,12 @@
]
}
},
"homepage": "https://backstage.io",
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "packages/backend-app-api"
},
"keywords": [
"backstage"
"files": [
"dist",
"config.d.ts",
"alpha",
"migrations/**/*.{js,d.ts}"
],
"license": "Apache-2.0",
"scripts": {
"build": "backstage-cli package build",
"clean": "backstage-cli package clean",
@@ -96,11 +102,5 @@
"msw": "^1.0.0",
"supertest": "^6.1.3"
},
"configSchema": "config.d.ts",
"files": [
"dist",
"config.d.ts",
"alpha",
"migrations/**/*.{js,d.ts}"
]
"configSchema": "config.d.ts"
}