mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
b8d3f36ed9
Updates the supported Node.js engine versions to include Node.js 26. This allows running the CLI on Node.js 26.0.0 and above while continuing to support active LTS versions.
76 lines
1.8 KiB
JSON
76 lines
1.8 KiB
JSON
{
|
|
"name": "@angular/compiler-cli",
|
|
"version": "0.0.0-PLACEHOLDER",
|
|
"description": "Angular - the compiler CLI for Node.js",
|
|
"typings": "index.d.ts",
|
|
"bin": {
|
|
"ngc": "./bundles/src/bin/ngc.js",
|
|
"ng-xi18n": "./bundles/src/bin/ng_xi18n.js"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"default": "./bundles/index.js"
|
|
},
|
|
"./package.json": {
|
|
"default": "./package.json"
|
|
},
|
|
"./linker": {
|
|
"types": "./linker/index.d.ts",
|
|
"default": "./bundles/linker/index.js"
|
|
},
|
|
"./linker/babel": {
|
|
"types": "./linker/babel/index.d.ts",
|
|
"default": "./bundles/linker/babel/index.js"
|
|
},
|
|
"./private/*": {
|
|
"types": "./private/*.d.ts",
|
|
"default": "./bundles/private/*.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@babel/core": "7.29.0",
|
|
"@jridgewell/sourcemap-codec": "^1.4.14",
|
|
"reflect-metadata": "^0.2.0",
|
|
"chokidar": "^5.0.0",
|
|
"convert-source-map": "^1.5.1",
|
|
"semver": "^7.0.0",
|
|
"tslib": "^2.3.0",
|
|
"yargs": "^18.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "6.0.3",
|
|
"@types/convert-source-map": "^2.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@angular/compiler": "0.0.0-PLACEHOLDER",
|
|
"typescript": ">=6.0 <6.1"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"typescript": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/angular/angular.git",
|
|
"directory": "packages/compiler-cli"
|
|
},
|
|
"keywords": [
|
|
"angular",
|
|
"compiler"
|
|
],
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": "^22.22.0 || ^24.13.1 || >=26.0.0"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/angular/angular/issues"
|
|
},
|
|
"homepage": "https://github.com/angular/angular/tree/main/packages/compiler-cli",
|
|
"ng-update": {
|
|
"packageGroup": "NG_UPDATE_PACKAGE_GROUP"
|
|
}
|
|
}
|