-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.62 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.62 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@red-hat-developer-hub/backstage-plugin-scaffolder-backend-module-orchestrator",
"description": "The orchestrator module for @backstage/plugin-scaffolder-backend",
"version": "1.3.4",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/rhdh-plugins",
"directory": "workspaces/orchestrator/plugins/scaffolder-backend-module-orchestrator"
},
"backstage": {
"role": "backend-plugin-module",
"pluginId": "scaffolder",
"pluginPackages": [
"@red-hat-developer-hub/backstage-plugin-orchestrator-common",
"@red-hat-developer-hub/backstage-plugin-scaffolder-backend-module-orchestrator"
],
"pluginPackage": "@backstage/plugin-scaffolder-backend"
},
"bugs": "https://github.com/redhat-developer/rhdh-plugins/issues",
"keywords": [
"backstage",
"plugin",
"orchestrator",
"workflows"
],
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"package.json": [
"package.json"
]
}
},
"scripts": {
"start": "backstage-cli package start",
"build": "backstage-cli package build",
"test": "backstage-cli package test",
"clean": "backstage-cli package clean",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"tsc": "tsc",
"prettier:check": "prettier --ignore-unknown --check .",
"prettier:fix": "prettier --ignore-unknown --write .",
"lint:check": "backstage-cli package lint",
"lint:fix": "backstage-cli package lint --fix",
"export-dynamic": "janus-cli package export-dynamic-plugin --embed-package '@red-hat-developer-hub/backstage-plugin-orchestrator-common'"
},
"dependencies": {
"@backstage/backend-plugin-api": "^1.5.0",
"@backstage/catalog-model": "^1.7.6",
"@backstage/plugin-permission-common": "^0.9.3",
"@backstage/plugin-scaffolder-node": "^0.12.1",
"@backstage/types": "^1.2.2",
"@red-hat-developer-hub/backstage-plugin-orchestrator-common": "workspace:^",
"axios": "^1.15.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@backstage/cli": "^0.34.5",
"@backstage/plugin-scaffolder-node-test-utils": "^0.3.5",
"@janus-idp/cli": "3.6.1",
"@spotify/prettier-config": "^15.0.0",
"@types/js-yaml": "^4.0.0"
},
"files": [
"app-config.yaml",
"dist",
"dist-dynamic/*.*",
"dist-dynamic/dist/**",
"static"
],
"maintainers": [
"@mlibra",
"@batzionb",
"@gciavarrini"
]
}