-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
executable file
·79 lines (79 loc) · 2.04 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
71
72
73
74
75
76
77
78
79
{
"name": "@angular/core",
"version": "19.1.0-next.0+sha-1bdc3f1",
"description": "Angular - the core framework",
"author": "angular",
"license": "MIT",
"engines": {
"node": "^18.19.1 || ^20.11.1 || >=22.0.0"
},
"exports": {
"./schematics/*": {
"default": "./schematics/*.js"
},
"./event-dispatch-contract.min.js": {
"default": "./event-dispatch-contract.min.js"
},
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./index.d.ts",
"default": "./fesm2022/core.mjs"
},
"./primitives/event-dispatch": {
"types": "./primitives/event-dispatch/index.d.ts",
"default": "./fesm2022/primitives/event-dispatch.mjs"
},
"./primitives/signals": {
"types": "./primitives/signals/index.d.ts",
"default": "./fesm2022/primitives/signals.mjs"
},
"./rxjs-interop": {
"types": "./rxjs-interop/index.d.ts",
"default": "./fesm2022/rxjs-interop.mjs"
},
"./testing": {
"types": "./testing/index.d.ts",
"default": "./fesm2022/testing.mjs"
}
},
"dependencies": {
"tslib": "^2.3.0"
},
"peerDependencies": {
"rxjs": "^6.5.3 || ^7.4.0",
"zone.js": "~0.15.0"
},
"repository": {
"type": "git",
"url": "https://github.com/angular/angular.git",
"directory": "packages/core"
},
"ng-update": {
"migrations": "./schematics/migrations.json",
"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"
]
},
"schematics": "./schematics/collection.json",
"sideEffects": false,
"module": "./fesm2022/core.mjs",
"typings": "./index.d.ts",
"type": "module"
}