@backstage/backend-plugin-api 0.6.18-next.0 → 0.6.18-next.1
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.
- package/CHANGELOG.md +8 -0
- package/alpha/package.json +1 -1
- package/package.json +24 -24
package/CHANGELOG.md
CHANGED
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,15 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-plugin-api",
|
|
3
|
+
"version": "0.6.18-next.1",
|
|
3
4
|
"description": "Core API used by Backstage backend plugins",
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
"backstage": {
|
|
6
|
+
"role": "node-library"
|
|
7
|
+
},
|
|
7
8
|
"publishConfig": {
|
|
8
9
|
"access": "public"
|
|
9
10
|
},
|
|
10
|
-
"
|
|
11
|
-
"
|
|
11
|
+
"keywords": [
|
|
12
|
+
"backstage"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://backstage.io",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/backstage/backstage",
|
|
18
|
+
"directory": "packages/backend-plugin-api"
|
|
12
19
|
},
|
|
20
|
+
"license": "Apache-2.0",
|
|
13
21
|
"exports": {
|
|
14
22
|
".": {
|
|
15
23
|
"require": "./dist/index.cjs.js",
|
|
@@ -23,29 +31,25 @@
|
|
|
23
31
|
},
|
|
24
32
|
"./package.json": "./package.json"
|
|
25
33
|
},
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
},
|
|
32
|
-
"keywords": [
|
|
33
|
-
"backstage"
|
|
34
|
+
"main": "./dist/index.cjs.js",
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"files": [
|
|
37
|
+
"dist",
|
|
38
|
+
"alpha"
|
|
34
39
|
],
|
|
35
|
-
"license": "Apache-2.0",
|
|
36
40
|
"scripts": {
|
|
37
41
|
"build": "backstage-cli package build",
|
|
42
|
+
"clean": "backstage-cli package clean",
|
|
38
43
|
"lint": "backstage-cli package lint",
|
|
39
|
-
"test": "backstage-cli package test",
|
|
40
44
|
"prepack": "backstage-cli package prepack",
|
|
41
45
|
"postpack": "backstage-cli package postpack",
|
|
42
|
-
"
|
|
43
|
-
"
|
|
46
|
+
"start": "backstage-cli package start",
|
|
47
|
+
"test": "backstage-cli package test"
|
|
44
48
|
},
|
|
45
49
|
"dependencies": {
|
|
46
|
-
"@backstage/backend-tasks": "^0.5.23-next.
|
|
50
|
+
"@backstage/backend-tasks": "^0.5.23-next.1",
|
|
47
51
|
"@backstage/config": "^1.2.0",
|
|
48
|
-
"@backstage/plugin-auth-node": "^0.4.13-next.
|
|
52
|
+
"@backstage/plugin-auth-node": "^0.4.13-next.1",
|
|
49
53
|
"@backstage/plugin-permission-common": "^0.7.13",
|
|
50
54
|
"@backstage/types": "^1.1.1",
|
|
51
55
|
"@types/express": "^4.17.6",
|
|
@@ -54,9 +58,5 @@
|
|
|
54
58
|
},
|
|
55
59
|
"devDependencies": {
|
|
56
60
|
"@backstage/cli": "^0.26.5-next.0"
|
|
57
|
-
}
|
|
58
|
-
"files": [
|
|
59
|
-
"dist",
|
|
60
|
-
"alpha"
|
|
61
|
-
]
|
|
61
|
+
}
|
|
62
62
|
}
|