https://github.com/angular/angular
Raw File
Tip revision: e2601c7fb2d7d92146eaad0394526d8c54456f7d authored by twerske on 30 April 2024, 16:51:28 UTC
docs: fix formatting for signal inputs guide
Tip revision: e2601c7
package.json
{
  "name": "@angular/localize",
  "version": "0.0.0-PLACEHOLDER",
  "description": "Angular - library for localizing messages",
  "bin": {
    "localize-translate": "./tools/bundles/src/translate/cli.js",
    "localize-extract": "./tools/bundles/src/extract/cli.js",
    "localize-migrate": "./tools/bundles/src/migrate/cli.js"
  },
  "exports": {
    "./tools": {
      "types": "./tools/index.d.ts",
      "default": "./tools/bundles/index.js"
    }
  },
  "author": "angular",
  "license": "MIT",
  "engines": {
    "node": "^18.13.0 || >=20.9.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/angular/angular.git"
  },
  "schematics": "./schematics/collection.json",
  "ng-update": {
    "packageGroup": "NG_UPDATE_PACKAGE_GROUP"
  },
  "ng-add": {
    "save": "devDependencies"
  },
  "sideEffects": [
    "./esm2022/init/**",
    "./fesm2022/init.mjs"
  ],
  "dependencies": {
    "@babel/core": "7.24.3",
    "@types/babel__core": "7.20.5",
    "fast-glob": "3.3.2",
    "yargs": "^17.2.1"
  },
  "peerDependencies": {
    "@angular/compiler": "0.0.0-PLACEHOLDER",
    "@angular/compiler-cli": "0.0.0-PLACEHOLDER"
  }
}
back to top