e9b78e9698
The uuid package dropped its CommonJS entry point in v14, making it incompatible with Backstage's CJS build output and Jest test runner. Rather than working around the ESM-only issue, replace all usage with the built-in crypto.randomUUID() which has been available in Node.js since v16.7 and in all major browsers since March 2022. Signed-off-by: Fredrik Adelöw <freben@spotify.com> Made-with: Cursor
121 lines
3.6 KiB
JSON
121 lines
3.6 KiB
JSON
{
|
|
"name": "@backstage/plugin-scaffolder-backend",
|
|
"version": "3.4.1-next.0",
|
|
"description": "The Backstage backend plugin that helps you create new things",
|
|
"backstage": {
|
|
"role": "backend-plugin",
|
|
"pluginId": "scaffolder",
|
|
"pluginPackages": [
|
|
"@backstage/plugin-scaffolder",
|
|
"@backstage/plugin-scaffolder-backend",
|
|
"@backstage/plugin-scaffolder-common",
|
|
"@backstage/plugin-scaffolder-node",
|
|
"@backstage/plugin-scaffolder-node-test-utils",
|
|
"@backstage/plugin-scaffolder-react"
|
|
],
|
|
"peerModules": [
|
|
"@backstage/plugin-catalog-backend-module-scaffolder-entity-model"
|
|
]
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"keywords": [
|
|
"backstage"
|
|
],
|
|
"homepage": "https://backstage.io",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/backstage/backstage",
|
|
"directory": "plugins/scaffolder-backend"
|
|
},
|
|
"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": [
|
|
"src/alpha.ts"
|
|
],
|
|
"package.json": [
|
|
"package.json"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"migrations",
|
|
"config.d.ts",
|
|
"assets"
|
|
],
|
|
"scripts": {
|
|
"build": "backstage-cli package build",
|
|
"build:assets": "node scripts/build-nunjucks.js",
|
|
"clean": "backstage-cli package clean",
|
|
"generate": "backstage-repo-tools package schema openapi generate --server --client-package plugins/scaffolder-common",
|
|
"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/backend-openapi-utils": "workspace:^",
|
|
"@backstage/backend-plugin-api": "workspace:^",
|
|
"@backstage/catalog-model": "workspace:^",
|
|
"@backstage/config": "workspace:^",
|
|
"@backstage/errors": "workspace:^",
|
|
"@backstage/integration": "workspace:^",
|
|
"@backstage/plugin-catalog-node": "workspace:^",
|
|
"@backstage/plugin-events-node": "workspace:^",
|
|
"@backstage/plugin-permission-common": "workspace:^",
|
|
"@backstage/plugin-permission-node": "workspace:^",
|
|
"@backstage/plugin-scaffolder-common": "workspace:^",
|
|
"@backstage/plugin-scaffolder-node": "workspace:^",
|
|
"@backstage/types": "workspace:^",
|
|
"@types/luxon": "^3.0.0",
|
|
"express": "^4.22.0",
|
|
"fs-extra": "^11.2.0",
|
|
"globby": "^11.0.0",
|
|
"isbinaryfile": "^5.0.0",
|
|
"isolated-vm": "^6.0.1",
|
|
"jsonschema": "^1.5.0",
|
|
"knex": "^3.0.0",
|
|
"lodash": "^4.17.21",
|
|
"logform": "^2.3.2",
|
|
"luxon": "^3.0.0",
|
|
"nunjucks": "^3.2.3",
|
|
"p-queue": "^6.6.2",
|
|
"prom-client": "^15.0.0",
|
|
"triple-beam": "^1.4.1",
|
|
"winston": "^3.2.1",
|
|
"winston-transport": "^4.7.0",
|
|
"yaml": "^2.0.0",
|
|
"zen-observable": "^0.10.0",
|
|
"zod": "^3.25.76 || ^4.0.0",
|
|
"zod-to-json-schema": "^3.25.1"
|
|
},
|
|
"devDependencies": {
|
|
"@backstage/backend-defaults": "workspace:^",
|
|
"@backstage/backend-test-utils": "workspace:^",
|
|
"@backstage/cli": "workspace:^",
|
|
"@backstage/plugin-scaffolder-node-test-utils": "workspace:^",
|
|
"@backstage/repo-tools": "workspace:^",
|
|
"@types/express": "^4.17.6",
|
|
"@types/fs-extra": "^11.0.0",
|
|
"@types/nunjucks": "^3.1.4",
|
|
"@types/supertest": "^2.0.8",
|
|
"@types/zen-observable": "^0.8.0",
|
|
"esbuild": "^0.27.0",
|
|
"strip-ansi": "^7.1.0",
|
|
"supertest": "^7.0.0",
|
|
"wait-for-expect": "^4.0.0"
|
|
},
|
|
"configSchema": "config.d.ts"
|
|
}
|