angular/packages/bazel/package.json
Kristiyan Kostadinov 94096c6ede feat(core): support TypeScript 5.3 (#52572)
Updates the repo to support TypeScript 5.3 and resolve any issues. Fixes include:
* Updating usages of TS compiler APIs to match their new signatures.
* In TS 5.3 negative numbers are represented as `PrefixUnaryExpression` instead of `NumericExpression`. These changes update all usages to account for it since passing a negative number into the old APIs results in a runtime error.

PR Close #52572
2023-11-09 22:56:41 +00:00

53 lines
1.3 KiB
JSON

{
"name": "@angular/bazel",
"version": "0.0.0-PLACEHOLDER",
"description": "Angular - bazel build rules",
"author": "angular",
"license": "MIT",
"engines": {
"node": "^18.13.0 || >=20.9.0"
},
"bin": {
"ngc-wrapped": "./src/ngc-wrapped/index.mjs",
"packager": "./src/ng_package/packager.mjs",
"types_bundler": "./src/types_bundle/index.mjs",
"xi18n": "./src/ngc-wrapped/extract_i18n.mjs"
},
"typings": "./src/ngc-wrapped/index.d.ts",
"bazelBin": {
"ngc-wrapped": {
"additionalAttributes": {
"templated_args": "[\"--nobazel_run_linker\"]"
}
}
},
"dependencies": {
"@microsoft/api-extractor": "^7.24.2",
"magic-string": "^0.30.0",
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/compiler-cli": "0.0.0-PLACEHOLDER",
"@bazel/concatjs": "^5.3.0",
"@bazel/worker": "^5.3.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"rollup": "^2.56.3",
"rollup-plugin-sourcemaps": "^0.6.3",
"terser": "^5.9.0",
"typescript": ">=5.2 <5.4"
},
"peerDependenciesMeta": {
"terser": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/angular/angular.git",
"directory": "packages/bazel"
},
"ng-update": {
"packageGroup": "NG_UPDATE_PACKAGE_GROUP"
}
}