Files
backstage/packages/create-app/package.json
T
github-actions[bot] 68db890456 Version Packages (next)
2026-05-26 15:26:38 +00:00

67 lines
1.6 KiB
JSON

{
"name": "@backstage/create-app",
"version": "0.8.4-next.0",
"description": "A CLI that helps you create your own Backstage app",
"backstage": {
"role": "cli"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"backstage"
],
"homepage": "https://backstage.io",
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "packages/create-app"
},
"license": "Apache-2.0",
"main": "dist/index.cjs.js",
"bin": {
"backstage-create-app": "bin/backstage-create-app"
},
"files": [
"bin",
"dist",
"templates"
],
"scripts": {
"add-lock-seed": "node scripts/add-lock-seed.js",
"build": "backstage-cli package build",
"clean": "backstage-cli package clean",
"lint": "backstage-cli package lint",
"prepack": "node scripts/prepack.js",
"postpack": "node scripts/postpack.js",
"start": "yarn nodemon --",
"test": "backstage-cli package test"
},
"nodemonConfig": {
"exec": "bin/backstage-create-app",
"ext": "ts",
"watch": "./src"
},
"dependencies": {
"@backstage/cli-common": "workspace:^",
"chalk": "^4.0.0",
"commander": "^14.0.3",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.3",
"inquirer": "^8.2.0",
"ora": "^5.3.0",
"recursive-readdir": "^2.2.2"
},
"devDependencies": {
"@backstage/backend-test-utils": "workspace:^",
"@backstage/cli": "workspace:^",
"@types/command-exists": "^1.2.0",
"@types/fs-extra": "^11.0.0",
"@types/inquirer": "^8.1.3",
"@types/node": "^22.13.14",
"@types/recursive-readdir": "^2.2.0",
"msw": "^2.0.0",
"nodemon": "^3.0.1"
}
}