-
Notifications
You must be signed in to change notification settings - Fork 219
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.91 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.91 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
{
"name": "backstage-plugin-techdocs",
"version": "1.17.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "frontend-plugin",
"supported-versions": "1.48.4",
"pluginId": "techdocs",
"pluginPackages": [
"backstage-plugin-techdocs",
"backstage-plugin-techdocs-backend"
]
},
"sideEffects": false,
"scripts": {
"tsc": "tsc",
"build": "backstage-cli package build",
"lint:check": "backstage-cli package lint",
"test": "backstage-cli package test --passWithNoTests --coverage",
"clean": "backstage-cli package clean",
"export-dynamic": "janus-cli package export-dynamic-plugin --in-place",
"export-dynamic:clean": "run export-dynamic --clean"
},
"dependencies": {
"@backstage/core-plugin-api": "1.12.3",
"@backstage/plugin-catalog-react": "2.0.0",
"@backstage/plugin-search-react": "1.10.4",
"@backstage/plugin-techdocs": "1.17.0",
"@backstage/plugin-techdocs-react": "1.3.8"
},
"peerDependencies": {
"react": "16.13.1 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@backstage/cli": "0.35.4",
"@janus-idp/cli": "3.7.0",
"react": "18.3.1",
"typescript": "5.9.3"
},
"files": [
"dist",
"dist-scalprum"
],
"scalprum": {
"name": "backstage.plugin-techdocs",
"exposedModules": {
"PluginRoot": "./src/index.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/rhdh",
"directory": "dynamic-plugins/wrappers/backstage-plugin-techdocs"
},
"maintainers": [
"@janus-idp/maintainers-showcase"
],
"author": "Red Hat",
"homepage": "https://red.ht/rhdh",
"bugs": "https://github.com/backstage/backstage/issues",
"keywords": [
"support:production",
"lifecycle:active"
]
}