-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(rbac): fix export-dynamic of rbac backend module
- Loading branch information
1 parent
ef84e2c
commit 7e03d4f
Showing
7 changed files
with
5,491 additions
and
588 deletions.
There are no files selected for viewing
68 changes: 68 additions & 0 deletions
68
plugins/rbac-backend-module-test/dist-dynamic/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
Oops, something went wrong.