Files
backstage/packages/config/package.json
T
github-actions[bot] 2231987c10 Version Packages (next)
2022-06-21 09:04:17 +00:00

48 lines
1.1 KiB
JSON

{
"name": "@backstage/config",
"description": "Config API used by Backstage core, backend, and CLI",
"version": "1.0.1",
"private": false,
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "common-library"
},
"homepage": "https://backstage.io",
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "packages/config"
},
"keywords": [
"backstage"
],
"license": "Apache-2.0",
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"build": "backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/types": "^1.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@backstage/test-utils": "^1.1.2-next.0",
"@types/jest": "^26.0.7",
"@types/node": "^16.0.0"
},
"files": [
"dist"
]
}