-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 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
{
"name": "@rootly/backstage-plugin-common",
"description": "Common components for Rootly plugins for Backstage",
"version": "1.3.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "MIT",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "common-library"
},
"homepage": "https://github.com/rootlyhq/backstage-plugin-common",
"repository": {
"type": "git",
"url": "git+https://github.com/rootlyhq/backstage-plugin-common.git"
},
"keywords": [
"backstage",
"plugin",
"rootly"
],
"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.34.3",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"typescript": "^5.9.3"
},
"files": [
"dist"
],
"packageManager": "yarn@4.9.2"
}