Skip to content

Commit

Permalink
feat(rbac): fix export-dynamic of rbac backend module
Browse files Browse the repository at this point in the history
  • Loading branch information
PatAKnight committed Aug 13, 2024
1 parent ef84e2c commit 7e03d4f
Show file tree
Hide file tree
Showing 7 changed files with 5,491 additions and 588 deletions.
68 changes: 68 additions & 0 deletions plugins/rbac-backend-module-test/dist-dynamic/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{
"name": "@janus-idp/backstage-plugin-rbac-backend-module-test-dynamic",
"description": "The test backend module for the rbac plugin.",
"version": "0.1.0",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"private": true,
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "backend-plugin-module"
},
"exports": {
".": {
"require": "./dist/index.cjs.js",
"default": "./dist/index.cjs.js"
},
"./alpha": {
"require": "./dist/alpha.cjs.js",
"default": "./dist/alpha.cjs.js"
},
"./package.json": "./package.json"
},
"scripts": {},
"dependencies": {
"@janus-idp/backstage-plugin-rbac-node": "^1.4.0",
"csv-parse": "^5.5.6"
},
"devDependencies": {},
"files": [
"dist",
"config.d.ts",
"app-config.janus-idp.yaml",
"alpha"
],
"configSchema": "config.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/janus-idp/backstage-plugins",
"directory": "plugins/rbac"
},
"keywords": [
"backstage",
"plugin"
],
"homepage": "https://janus-idp.io/",
"bugs": "https://github.com/janus-idp/backstage-plugins/issues",
"bundleDependencies": true,
"peerDependencies": {
"@backstage/backend-common": "^0.23.3",
"@backstage/backend-dynamic-feature-service": "^0.2.15",
"@backstage/backend-plugin-api": "^0.7.0",
"@backstage/backend-tasks": "^0.5.27",
"@backstage/config": "^1.2.0"
},
"overrides": {
"@aws-sdk/util-utf8-browser": {
"@smithy/util-utf8": "^2.0.0"
}
},
"resolutions": {
"@aws-sdk/util-utf8-browser": "npm:@smithy/util-utf8@~2"
}
}
Loading

0 comments on commit 7e03d4f

Please sign in to comment.