package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "@schematics/angular",
  3. "version": "16.0.4",
  4. "description": "Schematics specific to Angular",
  5. "homepage": "https://github.com/angular/angular-cli",
  6. "keywords": [
  7. "Angular CLI",
  8. "Angular DevKit",
  9. "angular",
  10. "blueprints",
  11. "code generation",
  12. "devkit",
  13. "schematics",
  14. "sdk"
  15. ],
  16. "exports": {
  17. "./package.json": "./package.json",
  18. "./utility": "./utility/index.js",
  19. "./utility/*": "./utility/*.js",
  20. "./migrations/migration-collection.json": "./migrations/migration-collection.json",
  21. "./*": "./*.js",
  22. "./private/components": "./private/components.js"
  23. },
  24. "schematics": "./collection.json",
  25. "dependencies": {
  26. "@angular-devkit/core": "16.0.4",
  27. "@angular-devkit/schematics": "16.0.4",
  28. "jsonc-parser": "3.2.0"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/angular/angular-cli.git"
  33. },
  34. "engines": {
  35. "node": "^16.14.0 || >=18.10.0",
  36. "npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
  37. "yarn": ">= 1.13.0"
  38. },
  39. "author": "Angular Authors",
  40. "license": "MIT",
  41. "bugs": {
  42. "url": "https://github.com/angular/angular-cli/issues"
  43. }
  44. }