-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.36 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.36 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
{
"name": "@red-hat-developer-hub/backstage-plugin-orchestrator-common",
"version": "3.6.1",
"license": "Apache-2.0",
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "common-library",
"pluginId": "orchestrator",
"pluginPackages": [
"@red-hat-developer-hub/backstage-plugin-orchestrator",
"@red-hat-developer-hub/backstage-plugin-orchestrator-backend",
"@red-hat-developer-hub/backstage-plugin-orchestrator-common",
"@red-hat-developer-hub/backstage-plugin-orchestrator-node"
]
},
"homepage": "https://red.ht/rhdh",
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/rhdh-plugins",
"directory": "workspaces/orchestrator/plugins/orchestrator-common"
},
"bugs": "https://github.com/redhat-developer/rhdh-plugins/issues",
"keywords": [
"backstage",
"plugin",
"orchestrator",
"workflows"
],
"files": [
"config.d.ts",
"dist",
"src/generated/docs/html"
],
"configSchema": "config.d.ts",
"sideEffects": false,
"scripts": {
"build": "backstage-cli package build",
"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",
"test": "backstage-cli package test --passWithNoTests --coverage",
"clean": "backstage-cli package clean",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"openapi:generate": "./scripts/openapi.sh generate",
"openapi:check": "./scripts/openapi.sh check"
},
"dependencies": {
"@backstage/core-plugin-api": "^1.12.4",
"@backstage/plugin-permission-common": "^0.9.7",
"@backstage/types": "^1.2.2",
"@serverlessworkflow/sdk-typescript": "^0.8.4",
"axios": "^1.15.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@backstage/cli": "^0.36.0",
"@openapitools/openapi-generator-cli": "2.30.2",
"@types/js-yaml": "^4.0.0",
"@types/json-schema": "7.0.15",
"js-yaml-cli": "^0.6.0"
},
"maintainers": [
"@mlibra",
"@batzionb",
"@gciavarrini"
],
"author": "The Backstage Community"
}