-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.34 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
{
"name": "@forgedapps/backstage-catalog-webhook-plugin",
"description": "Publish a Backstage catalog to a remote webhook. Designed by Forged Apps to synchronize Backstage with Atlassian Compass, but it can be used to push your catalog to any HTTP endpoint.",
"version": "3.5.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "MIT",
"keywords": [
"backstage",
"plugin",
"atlassian",
"compass",
"webhook"
],
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"registry": "https://registry.npmjs.org/"
},
"backstage": {
"role": "backend-plugin-module",
"pluginId": "backstage-catalog-webhook-plugin",
"pluginPackage": "@forgedapps/backstage-catalog-webhook-plugin",
"testConfig": {}
},
"scripts": {
"start": "backstage-cli package start",
"build": "yarn tsc && backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"clean": "backstage-cli package clean",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"fix": "backstage-cli repo fix --publish",
"release": "yarn build && dotenv npx release-it"
},
"dependencies": {
"@backstage/backend-plugin-api": "^1.6.2",
"@backstage/catalog-client": "^1.12.1",
"@backstage/catalog-model": "^1.7.6"
},
"devDependencies": {
"@backstage/backend-test-utils": "^1.10.4",
"@backstage/cli": "^0.35.3",
"@backstage/config": "^1.3.6",
"@biomejs/biome": "1.9.3",
"@types/jest": "^30.0.0",
"dotenv-cli": "^7.4.4",
"release-it": "^17.10.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"resolutions": {
"diff": "4.0.4",
"lodash": "4.17.23",
"qs": "6.14.1"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/forgedapps/backstage-catalog-webhook-plugin.git",
"directory": "."
},
"homepage": "https://github.com/forgedapps/backstage-catalog-webhook-plugin#readme",
"author": {
"name": "Forged Apps, LLC",
"email": "support@forgedapps.com"
},
"release-it": {
"$schema": "https://unpkg.com/release-it/schema/release-it.json",
"github": {
"release": true
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}
}