-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 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
{
"name": "backstage-components",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Sample Backstage catalog entities and generator for testing.",
"scripts": {
"validate:catalog": "tsx scripts/validate-catalog.ts",
"validate:catalog:generated": "tsx scripts/validate-catalog.ts --include-generated",
"generate:catalog": "tsx scripts/generate-large-org-catalog.ts",
"validate:catalog:with-generator": "yarn generate:catalog --preset small && yarn validate:catalog:generated",
"typecheck": "tsc --noEmit",
"provision:keycloak": "tsx scripts/provision-keycloak.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PatAKnight/backstage-components.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PatAKnight/backstage-components/issues"
},
"homepage": "https://github.com/PatAKnight/backstage-components#readme",
"devDependencies": {
"@backstage/catalog-model": "^1.4.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.0",
"js-yaml": "^4.1.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}