yarn-plugin: add initial version of plugin

Signed-off-by: MT Lewis <mtlewis@users.noreply.github.com>
This commit is contained in:
MT Lewis
2024-04-09 21:12:35 +01:00
parent 3b086b0020
commit eaa7500130
7 changed files with 1289 additions and 47 deletions
+42
View File
@@ -0,0 +1,42 @@
{
"name": "yarn-plugin-backstage",
"description": "Yarn plugin for working with Backstage monorepos",
"version": "0.0.0",
"private": true,
"backstage": {
"role": "node-library"
},
"homepage": "https://backstage.io",
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "packages/yarn-plugin"
},
"keywords": [
"backstage"
],
"license": "Apache-2.0",
"main": "./src/index.ts",
"scripts": {
"build": "builder build plugin",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"clean": "backstage-cli package clean",
"start": "nodemon --"
},
"dependencies": {
"@backstage/release-manifests": "workspace:^",
"@yarnpkg/core": "^4.0.3",
"@yarnpkg/fslib": "^3.0.2"
},
"devDependencies": {
"@backstage/cli": "workspace:^",
"@yarnpkg/builder": "^4.0.0",
"nodemon": "^3.0.1"
},
"nodemonConfig": {
"watch": "./src",
"exec": "builder build plugin",
"ext": "ts"
}
}