-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 1.75 KB
/
package.json
File metadata and controls
executable file
·64 lines (64 loc) · 1.75 KB
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
{
"name": "@angular/platform-browser-dynamic",
"version": "22.0.0-next.4+sha-61967d7",
"description": "Angular - library for using Angular in a web browser with JIT compilation",
"author": "angular",
"license": "MIT",
"engines": {
"node": "^22.22.0 || >=24.13.1"
},
"dependencies": {
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/core": "22.0.0-next.4+sha-61967d7",
"@angular/common": "22.0.0-next.4+sha-61967d7",
"@angular/compiler": "22.0.0-next.4+sha-61967d7",
"@angular/platform-browser": "22.0.0-next.4+sha-61967d7"
},
"repository": {
"type": "git",
"url": "https://github.com/angular/angular.git",
"directory": "packages/platform-browser-dynamic"
},
"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"
]
},
"sideEffects": [
"./fesm2022/platform-browser-dynamic.mjs",
"./fesm2022/testing.mjs"
],
"module": "./fesm2022/platform-browser-dynamic.mjs",
"typings": "./types/platform-browser-dynamic.d.ts",
"type": "module",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./types/platform-browser-dynamic.d.ts",
"default": "./fesm2022/platform-browser-dynamic.mjs"
},
"./testing": {
"types": "./types/testing.d.ts",
"default": "./fesm2022/testing.mjs"
}
}
}