@openchoreo/backstage-plugin-thunder-idp-client-node 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ 'use strict';
2
+
3
+ const THUNDER_VERSION = "v0.10.0";
4
+
5
+ exports.THUNDER_VERSION = THUNDER_VERSION;
6
+ //# sourceMappingURL=version.cjs.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.cjs.js","sources":["../src/version.ts"],"sourcesContent":["/**\n * Thunder IdP API Version\n * Auto-generated from package.json thunderVersion field\n * DO NOT EDIT MANUALLY\n *\n * @packageDocumentation\n */\n\nexport const THUNDER_VERSION = 'v0.10.0';\n"],"names":[],"mappings":";;AAQO,MAAM,eAAA,GAAkB;;;;"}
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@openchoreo/backstage-plugin-thunder-idp-client-node",
3
+ "version": "1.1.0",
4
+ "license": "Apache-2.0",
5
+ "description": "Node.js library for the thunder-idp-client plugin",
6
+ "main": "dist/index.cjs.js",
7
+ "types": "dist/index.d.ts",
8
+ "publishConfig": {
9
+ "access": "public",
10
+ "main": "dist/index.cjs.js",
11
+ "types": "dist/index.d.ts"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/openchoreo/backstage-plugins.git",
16
+ "directory": "plugins/thunder-idp-client-node"
17
+ },
18
+ "backstage": {
19
+ "role": "node-library",
20
+ "pluginId": "thunder-idp-client",
21
+ "pluginPackages": [
22
+ "@openchoreo/backstage-plugin-thunder-idp-client-node"
23
+ ]
24
+ },
25
+ "thunderVersion": "v0.10.0",
26
+ "scripts": {
27
+ "build": "backstage-cli package build",
28
+ "lint": "backstage-cli package lint",
29
+ "test": "backstage-cli package test",
30
+ "clean": "backstage-cli package clean",
31
+ "clean:generated": "rimraf src/generated openapi src/version.ts",
32
+ "generate:clients": "bash scripts/generate-clients.sh",
33
+ "prepack": "backstage-cli package prepack",
34
+ "postpack": "backstage-cli package postpack"
35
+ },
36
+ "dependencies": {
37
+ "@backstage/backend-plugin-api": "^1.4.3",
38
+ "@backstage/config": "^1.3.4",
39
+ "openapi-fetch": "0.13.8"
40
+ },
41
+ "devDependencies": {
42
+ "@backstage/cli": "^0.34.3",
43
+ "openapi-typescript": "7.10.1",
44
+ "rimraf": "5.0.10"
45
+ },
46
+ "files": [
47
+ "dist"
48
+ ],
49
+ "typesVersions": {
50
+ "*": {
51
+ "package.json": [
52
+ "package.json"
53
+ ]
54
+ }
55
+ }
56
+ }