{ "name": "@backstage/plugin-user-settings", "version": "0.9.0", "description": "A Backstage plugin that provides a settings page", "backstage": { "role": "frontend-plugin", "pluginId": "user-settings", "pluginPackages": [ "@backstage/plugin-user-settings", "@backstage/plugin-user-settings-backend", "@backstage/plugin-user-settings-common" ] }, "publishConfig": { "access": "public" }, "keywords": [ "backstage" ], "homepage": "https://backstage.io", "repository": { "type": "git", "url": "https://github.com/backstage/backstage", "directory": "plugins/user-settings" }, "license": "Apache-2.0", "sideEffects": false, "exports": { ".": "./src/index.ts", "./alpha": "./src/alpha.tsx", "./package.json": "./package.json" }, "main": "src/index.ts", "types": "src/index.ts", "typesVersions": { "*": { "alpha": [ "src/alpha.tsx" ], "package.json": [ "package.json" ] } }, "files": [ "dist" ], "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/catalog-model": "workspace:^", "@backstage/core-app-api": "workspace:^", "@backstage/core-components": "workspace:^", "@backstage/core-plugin-api": "workspace:^", "@backstage/errors": "workspace:^", "@backstage/frontend-plugin-api": "workspace:^", "@backstage/plugin-catalog-react": "workspace:^", "@backstage/plugin-signals-react": "workspace:^", "@backstage/plugin-user-settings-common": "workspace:^", "@backstage/theme": "workspace:^", "@backstage/types": "workspace:^", "@material-ui/core": "^4.12.2", "@material-ui/icons": "^4.9.1", "@material-ui/lab": "4.0.0-alpha.61", "dataloader": "^2.0.0", "react-use": "^17.2.4", "zen-observable": "^0.10.0" }, "devDependencies": { "@backstage/cli": "workspace:^", "@backstage/dev-utils": "workspace:^", "@backstage/plugin-catalog": "workspace:^", "@backstage/test-utils": "workspace:^", "@testing-library/dom": "^10.0.0", "@testing-library/jest-dom": "^6.0.0", "@testing-library/react": "^16.0.0", "@testing-library/user-event": "^14.0.0", "@types/react": "^18.0.0", "msw": "^1.0.0", "react": "^18.0.2", "react-dom": "^18.0.2", "react-router-dom": "^6.30.2" }, "peerDependencies": { "@types/react": "^17.0.0 || ^18.0.0", "react": "^17.0.0 || ^18.0.0", "react-dom": "^17.0.0 || ^18.0.0", "react-router-dom": "^6.30.2" }, "peerDependenciesMeta": { "@types/react": { "optional": true } }, "configSchema": { "$schema": "https://backstage.io/schema/config-v1", "title": "@backstage/user-settings", "type": "object", "properties": { "auth": { "type": "object", "properties": { "providers": { "type": "object", "additionalProperties": { "type": "object", "visibility": "frontend", "additionalProperties": true } } } } } } }