77 lines
1.9 KiB
JSON
77 lines
1.9 KiB
JSON
{
|
|
"name": "@backstage/backend-plugin-api",
|
|
"version": "1.6.0-next.1",
|
|
"description": "Core API used by Backstage backend plugins",
|
|
"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-plugin-api"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./alpha": "./src/alpha/index.ts",
|
|
"./testUtils": "./src/testUtils.ts",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"typesVersions": {
|
|
"*": {
|
|
"alpha": [
|
|
"src/alpha/index.ts"
|
|
],
|
|
"testUtils": [
|
|
"src/testUtils.ts"
|
|
],
|
|
"package.json": [
|
|
"package.json"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"config.d.ts"
|
|
],
|
|
"scripts": {
|
|
"build": "backstage-cli package build",
|
|
"clean": "backstage-cli package clean",
|
|
"lint": "backstage-cli package lint",
|
|
"prepack": "backstage-cli package prepack",
|
|
"postpack": "backstage-cli package postpack",
|
|
"start": "backstage-cli package start",
|
|
"test": "backstage-cli package test"
|
|
},
|
|
"dependencies": {
|
|
"@backstage/cli-common": "workspace:^",
|
|
"@backstage/config": "workspace:^",
|
|
"@backstage/errors": "workspace:^",
|
|
"@backstage/plugin-auth-node": "workspace:^",
|
|
"@backstage/plugin-permission-common": "workspace:^",
|
|
"@backstage/plugin-permission-node": "workspace:^",
|
|
"@backstage/types": "workspace:^",
|
|
"@types/express": "^4.17.6",
|
|
"@types/json-schema": "^7.0.6",
|
|
"@types/luxon": "^3.0.0",
|
|
"json-schema": "^0.4.0",
|
|
"knex": "^3.0.0",
|
|
"luxon": "^3.0.0",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@backstage/backend-test-utils": "workspace:^",
|
|
"@backstage/cli": "workspace:^"
|
|
},
|
|
"configSchema": "config.d.ts"
|
|
}
|