-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@rmarting/rhdh-dynamic-devquote-plugin",
"version": "0.0.4",
"description": "This is an example of a dynamic public to use with Red Hat Developer Hub. It is basically a wrapper of the original [Dev Quotes plugin](https://github.com/Parsifal-M/backstage-dev-quotes)",
"main": "src/index.js",
"author": "Roman Martin Gil",
"contributors": [
{
"name": "Roman Martin",
"email": "jromanmartin@gmail.com"
}
],
"maintainers": [
{
"name": "Roman Martin",
"email": "jromanmartin@gmail.com"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/rmarting/rhdh-dynamic-devquote-plugin.git"
},
"publishConfig": {
"access": "public"
},
"backstage": {
"role": "frontend-plugin"
},
"dependencies": {
"@parsifal-m/plugin-dev-quotes-homepage": "3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@backstage/cli": "0.25.6",
"@janus-idp/cli": "1.4.7"
},
"scripts": {
"clean": "backstage-cli package clean",
"build": "backstage-cli package build",
"export-dynamic": "janus-cli package export-dynamic-plugin"
},
"files": [
"dist",
"dist-scalprum"
],
"scalprum": {
"name": "rmarting.rhdh-dynamic-devquote-plugin",
"exposedModules": {
"PluginRoot": "./src/index.ts"
}
}
}