@rxap/plugin-library
Version:
This package provides generators and executors for managing and maintaining Nx plugin libraries. It includes functionality for generating index exports, fixing dependencies, generating JSON schemas, and more. It helps streamline the development process fo
51 lines (50 loc) • 1.14 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "FixDependencies",
"title": "",
"type": "object",
"properties": {
"projects": {
"alias": "project",
"type": "array",
"items": {
"type": "string"
}
},
"reset": {
"type": "boolean"
},
"resolve": {
"type": "boolean"
},
"resetAll": {
"alias": "resetAll",
"type": "boolean"
},
"strict": {
"type": "boolean",
"default": false,
"description": "If true, will fail if any dependency is not found"
},
"onlyDependencies": {
"type": "boolean",
"default": false,
"description": "If true, will move all peer dependencies to dependencies"
},
"dependencies": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of packages that should always be added as dependencies"
},
"peerDependencies": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of packages that should always be added as peerDependencies"
}
},
"required": []
}