-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.29 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
{
"name": "@httpdss/plugin-scaffolder-backend-module-structkit",
"version": "0.1.0",
"description": "Backstage scaffolder backend module for StructKit - generate code from YAML structure files",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"backstage": {
"role": "backend-plugin-module",
"pluginId": "scaffolder",
"pluginPackage": "@backstage/plugin-scaffolder-backend"
},
"scripts": {
"build": "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"
},
"dependencies": {
"@backstage/backend-plugin-api": "^1.0.0",
"@backstage/config": "^1.2.0",
"@backstage/plugin-scaffolder-node": "^0.4.0",
"@backstage/types": "^1.1.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@backstage/cli": "^0.27.0",
"@types/node": "^18.0.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/httpdss/backstage-plugin-structkit"
},
"keywords": [
"backstage",
"scaffolder",
"structkit",
"template",
"code-generation"
]
}