-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·98 lines (98 loc) · 2.47 KB
/
package.json
File metadata and controls
executable file
·98 lines (98 loc) · 2.47 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@angular/core",
"version": "22.0.0-next.6+sha-51c3a11",
"description": "Angular - the core framework",
"author": "angular",
"license": "MIT",
"engines": {
"node": "^22.22.0 || >=24.13.1"
},
"exports": {
"./schematics/*": {
"default": "./schematics/*.js"
},
"./event-dispatch-contract.min.js": {
"default": "./event-dispatch-contract.min.js"
},
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./types/core.d.ts",
"default": "./fesm2022/core.mjs"
},
"./primitives/di": {
"types": "./types/primitives-di.d.ts",
"default": "./fesm2022/primitives-di.mjs"
},
"./primitives/event-dispatch": {
"types": "./types/primitives-event-dispatch.d.ts",
"default": "./fesm2022/primitives-event-dispatch.mjs"
},
"./primitives/signals": {
"types": "./types/primitives-signals.d.ts",
"default": "./fesm2022/primitives-signals.mjs"
},
"./rxjs-interop": {
"types": "./types/rxjs-interop.d.ts",
"default": "./fesm2022/rxjs-interop.mjs"
},
"./testing": {
"types": "./types/testing.d.ts",
"default": "./fesm2022/testing.mjs"
}
},
"dependencies": {
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/compiler": "22.0.0-next.6+sha-51c3a11",
"rxjs": "^6.5.3 || ^7.4.0",
"zone.js": "~0.15.0 || ~0.16.0"
},
"peerDependenciesMeta": {
"@angular/compiler": {
"optional": true
},
"zone.js": {
"optional": true
}
},
"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"
]
},
"angular": {
"bestPractices": {
"format": "markdown",
"path": "./resources/best-practices.md"
}
},
"schematics": "./schematics/collection.json",
"sideEffects": false,
"module": "./fesm2022/core.mjs",
"typings": "./types/core.d.ts",
"type": "module"
}