{ "name": "@janus-idp/cli", "description": "CLI for developing Backstage plugins and apps", "version": "1.7.1", "publishConfig": { "access": "public" }, "backstage": { "role": "cli" }, "homepage": "https://janus-idp.io", "repository": { "type": "git", "url": "https://github.com/janus-idp/backstage-plugins", "directory": "packages/cli" }, "keywords": [ "backstage" ], "license": "Apache-2.0", "main": "dist/index.cjs.js", "scripts": { "build": "backstage-cli package build", "lint": "backstage-cli package lint", "tsc": "tsc", "test": "backstage-cli package test --passWithNoTests --coverage", "clean": "backstage-cli package clean", "start": "nodemon --" }, "bin": { "janus-cli": "bin/janus-cli" }, "dependencies": { "@backstage/cli-common": "^0.1.13", "@backstage/cli-node": "^0.1.5", "@backstage/config": "^1.1.1", "@backstage/config-loader": "^1.5.1", "@backstage/errors": "^1.2.3", "@backstage/eslint-plugin": "^0.1.3", "@backstage/types": "^1.1.1", "@manypkg/get-packages": "^1.1.3", "@openshift/dynamic-plugin-sdk-webpack": "^3.0.0", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.7", "@rollup/plugin-commonjs": "^25.0.4", "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.2.1", "@rollup/plugin-yaml": "^4.0.0", "@svgr/rollup": "^8.1.0", "@svgr/webpack": "^6.5.1", "@yarnpkg/lockfile": "^1.1.0", "@yarnpkg/parsers": "^3.0.0-rc.4", "bfj": "^7.0.2", "chalk": "^4.0.0", "chokidar": "^3.3.1", "commander": "^9.1.0", "css-loader": "^6.5.1", "esbuild": "^0.19.0", "esbuild-loader": "^2.18.0", "eslint": "^8.49.0", "eslint-config-prettier": "^8.10.0", "eslint-webpack-plugin": "^3.2.0", "express": "^4.18.2", "fork-ts-checker-webpack-plugin": "^7.0.0-alpha.8", "fs-extra": "^10.1.0", "handlebars": "^4.7.7", "html-webpack-plugin": "^5.3.1", "inquirer": "^8.2.0", "lodash": "^4.17.21", "mini-css-extract-plugin": "^2.4.2", "node-libs-browser": "^2.2.1", "npm-packlist": "^5.0.0", "ora": "^5.3.0", "postcss": "^8.2.13", "process": "^0.11.10", "react-dev-utils": "^12.0.0-next.60", "react-refresh": "^0.14.0", "recursive-readdir": "^2.2.2", "rollup": "^2.78.0", "rollup-plugin-dts": "^4.0.1", "rollup-plugin-esbuild": "^4.7.2", "rollup-plugin-postcss": "^4.0.0", "rollup-pluginutils": "^2.8.2", "semver": "^7.5.4", "style-loader": "^3.3.1", "swc-loader": "^0.2.3", "typescript-json-schema": "^0.62.0", "webpack": "^5.89.0", "webpack-dev-server": "^4.15.1", "yml-loader": "^2.1.0", "yn": "^4.0.0" }, "devDependencies": { "@backstage/backend-common": "0.19.8", "@backstage/backend-plugin-api": "0.6.6", "@backstage/backend-test-utils": "0.2.7", "@backstage/cli": "0.23.0", "@backstage/core-app-api": "1.11.0", "@backstage/core-components": "0.13.6", "@backstage/core-plugin-api": "1.7.0", "@backstage/dev-utils": "1.0.22", "@backstage/plugin-scaffolder-backend": "1.18.0", "@backstage/plugin-scaffolder-node": "0.2.6", "@backstage/test-utils": "1.4.4", "@backstage/theme": "0.4.3", "@types/express": "4.17.20", "@types/fs-extra": "9.0.1", "@types/inquirer": "8.1.3", "@types/mock-fs": "4.13.4", "@types/node": "18.18.5", "@types/npm-packlist": "3.0.0", "@types/recursive-readdir": "2.2.0", "@types/rollup-plugin-postcss": "3.1.4", "@types/yarnpkg__lockfile": "1.1.4", "mock-fs": "5.2.0", "msw": "1.3.2", "nodemon": "3.0.1", "ts-node": "10.0.0", "type-fest": "4.3.1" }, "peerDependencies": { "@microsoft/api-extractor": "^7.21.2" }, "peerDependenciesMeta": { "@microsoft/api-extractor": { "optional": true } }, "files": [ "asset-types", "templates", "config", "bin", "dist/**/*.js" ], "nodemonConfig": { "watch": "./src", "exec": "bin/janus-cli", "ext": "ts" }, "configSchema": { "$schema": "https://backstage.io/schema/config-v1", "title": "@janus-idp/cli", "type": "object", "properties": { "app": { "type": "object", "properties": { "baseUrl": { "type": "string", "visibility": "frontend" }, "title": { "type": "string", "visibility": "frontend" }, "datadogRum": { "type": "object", "description": "Datadog RUM events configuration", "properties": { "env": { "type": "string", "visibility": "frontend", "description": "Environment for Datadog RUM events" }, "clientToken": { "type": "string", "visibility": "frontend", "description": "clientToken for Datadog RUM events" }, "applicationId": { "type": "string", "visibility": "frontend", "description": "applicationId for Datadog RUM events" }, "site": { "type": "string", "visibility": "frontend", "description": "site for Datadog RUM events" } }, "required": [ "clientToken", "applicationId" ] }, "listen": { "type": "object", "description": "Listening configuration for local development", "properties": { "host": { "type": "string", "visibility": "frontend", "description": "The host that the frontend should be bound to. Only used for local development." }, "port": { "type": "number", "visibility": "frontend", "description": "The port that the frontend should be bound to. Only used for local development." } } }, "https": { "type": "object", "description": "Only used for local development. The https object is passed to webpack in order to enable using https on localhost.", "properties": { "certificate": { "type": "object", "description": "Parent object containing certificate and the private key", "required": [ "key", "cert" ], "properties": { "key": { "type": "string", "visibility": "secret", "description": "Https Certificate private key. Use $file to load in a file" }, "cert": { "type": "string", "visibility": "secret", "description": "Https Certificate. Use $file to load in a file" } } } } } } } } } }