-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 KB
/
package.json
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
{
"name": "@pagerduty/backstage-plugin-common",
"description": "Common components for PagerDuty plugins for Backstage",
"version": "NPM_PACKAGE_VERSION",
"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": "common-library",
"pluginId": "pagerduty",
"pluginPackages": [
"@pagerduty/backstage-plugin",
"@pagerduty/backstage-plugin-common",
"@pagerduty/backstage-plugin-backend"
]
},
"homepage": "https://github.com/pagerduty/backstage-plugin-common",
"repository": {
"type": "git",
"url": "https://github.com/pagerduty/backstage-plugin-common.git",
"directory": "."
},
"keywords": [
"backstage",
"plugin",
"pagerduty"
],
"scripts": {
"build": "yarn tsc && backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"clean": "backstage-cli package clean"
},
"devDependencies": {
"@backstage/cli": "^0.25.1",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"typescript": "^5.3.3"
},
"files": [
"dist"
],
"packageManager": "[email protected]"
}