-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·61 lines (61 loc) · 1.64 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
{
"name": "@angular/platform-browser-dynamic",
"version": "19.1.0-next.0+sha-a55341b",
"description": "Angular - library for using Angular in a web browser with JIT compilation",
"author": "angular",
"license": "MIT",
"engines": {
"node": "^18.19.1 || ^20.11.1 || >=22.0.0"
},
"dependencies": {
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/core": "19.1.0-next.0+sha-a55341b",
"@angular/common": "19.1.0-next.0+sha-a55341b",
"@angular/compiler": "19.1.0-next.0+sha-a55341b",
"@angular/platform-browser": "19.1.0-next.0+sha-a55341b"
},
"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": false,
"module": "./fesm2022/platform-browser-dynamic.mjs",
"typings": "./index.d.ts",
"type": "module",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./index.d.ts",
"default": "./fesm2022/platform-browser-dynamic.mjs"
},
"./testing": {
"types": "./testing/index.d.ts",
"default": "./fesm2022/testing.mjs"
}
}
}