nx/packages/angular/package.json
Leosvel Pérez Espinosa 752d418f78
feat(angular): support angular cli v20.0.0-rc.3 (#30715)
Add support for the Angular CLI **20.0.0-rc.3** version.
2025-05-26 10:00:47 -04:00

92 lines
3.1 KiB
JSON

{
"name": "@nx/angular",
"version": "0.0.1",
"private": false,
"description": "The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: \n\n- Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, Playwright and Cypress. \n\n- Generators to help scaffold code quickly (like: Micro Frontends, Libraries, both internal to your codebase and publishable to npm) \n\n- Single Component Application Modules (SCAMs) \n\n- NgRx helpers. \n\n- Utilities for automatic workspace refactoring.",
"repository": {
"type": "git",
"url": "https://github.com/nrwl/nx.git",
"directory": "packages/angular"
},
"keywords": [
"Monorepo",
"Angular",
"Jest",
"Cypress",
"CLI",
"Front-end"
],
"exports": {
"./migrations.json": "./migrations.json",
"./generators.json": "./generators.json",
"./executors.json": "./executors.json",
"./generators": "./generators.js",
"./executors": "./executors.js",
"./plugin": "./plugin.js",
"./tailwind": "./tailwind.js",
"./module-federation": "./module-federation/index.js",
"./src/utils": "./src/utils/index.js",
"./plugins/component-testing": "./plugins/component-testing.js",
"./src/generators/utils": "./src/generators/utils/index.js",
"./src/generators/move/move-impl": "./src/generators/move/move-impl.js",
"./src/builders/*/schema.json": "./src/builders/*/schema.json",
"./src/builders/*.impl": "./src/builders/*.impl.js",
"./src/executors/*/schema.json": "./src/executors/*/schema.json",
"./src/executors/*.impl": "./src/executors/*.impl.js"
},
"author": "Victor Savkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/nrwl/nx/issues"
},
"homepage": "https://nx.dev",
"executors": "./executors.json",
"generators": "./generators.json",
"ng-update": {
"requirements": {},
"migrations": "./migrations.json"
},
"dependencies": {
"@nx/devkit": "file:../devkit",
"@nx/eslint": "file:../eslint",
"@nx/js": "file:../js",
"@nx/module-federation": "file:../module-federation",
"@nx/rspack": "file:../rspack",
"@nx/web": "file:../web",
"@nx/webpack": "file:../webpack",
"@nx/workspace": "file:../workspace",
"@phenomnomnominal/tsquery": "~5.0.1",
"@typescript-eslint/type-utils": "^8.0.0",
"enquirer": "~2.3.6",
"magic-string": "~0.30.2",
"picocolors": "^1.1.0",
"picomatch": "4.0.2",
"semver": "^7.5.3",
"tslib": "^2.3.0",
"webpack-merge": "^5.8.0"
},
"peerDependencies": {
"@angular/build": ">= 18.0.0 < 21.0.0",
"@angular-devkit/build-angular": ">= 18.0.0 < 21.0.0",
"@angular-devkit/core": ">= 18.0.0 < 21.0.0",
"@angular-devkit/schematics": ">= 18.0.0 < 21.0.0",
"@schematics/angular": ">= 18.0.0 < 21.0.0",
"ng-packagr": ">= 18.0.0 < 21.0.0",
"rxjs": "^6.5.3 || ^7.5.0"
},
"peerDependenciesMeta": {
"@angular/build": {
"optional": true
},
"@angular-devkit/build-angular": {
"optional": true
},
"ng-packagr": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}