-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
executable file
·70 lines (70 loc) · 1.8 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@angular/bazel",
"version": "19.2.0-next.0+sha-a416414",
"description": "Angular - bazel build rules",
"author": "angular",
"license": "MIT",
"engines": {
"node": "^18.19.1 || ^20.11.1 || >=22.0.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": "19.2.0-next.0+sha-a416414",
"@bazel/concatjs": "^5.3.0",
"@bazel/worker": "^5.3.0",
"@rollup/plugin-commonjs": "^28.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.5 <5.8"
},
"peerDependenciesMeta": {
"terser": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/angular/angular.git",
"directory": "packages/bazel"
},
"ng-update": {
"packageGroup": [
"@angular/core",
"@angular/bazel",
"@angular/common",
"@angular/compiler",
"@angular/compiler-cli",
"@angular/animations",
"@angular/elements",
"@angular/platform-browser",
"@angular/platform-browser-dynamic",
"@angular/forms",
"@angular/platform-server",
"@angular/upgrade",
"@angular/router",
"@angular/language-service",
"@angular/localize",
"@angular/service-worker"
]
}
}