-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.67 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
{
"name": "@ngrx/signals",
"version": "18.1.1",
"description": "Reactive Store and Set of Utilities for Angular Signals",
"repository": {
"type": "git",
"url": "https://github.com/ngrx/platform.git"
},
"keywords": [
"Angular",
"NgRx",
"Signals",
"Signal Store",
"Signal State",
"State Management"
],
"author": "NgRx",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngrx/platform/issues"
},
"homepage": "https://github.com/ngrx/platform#readme",
"peerDependencies": {
"@angular/core": "^18.0.0",
"rxjs": "^6.5.3 || ^7.4.0"
},
"peerDependenciesMeta": {
"rxjs": {
"optional": true
}
},
"schematics": "./schematics/collection.json",
"sideEffects": false,
"ng-update": {
"packageGroup": [
"@ngrx/store",
"@ngrx/effects",
"@ngrx/entity",
"@ngrx/router-store",
"@ngrx/data",
"@ngrx/schematics",
"@ngrx/store-devtools",
"@ngrx/component-store",
"@ngrx/component",
"@ngrx/eslint-plugin",
"@ngrx/operators",
"@ngrx/signals"
],
"migrations": "./migrations/migration.json"
},
"dependencies": {
"tslib": "^2.3.0"
},
"module": "fesm2022/ngrx-signals.mjs",
"typings": "index.d.ts",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./index.d.ts",
"default": "./fesm2022/ngrx-signals.mjs"
},
"./entities": {
"types": "./entities/index.d.ts",
"default": "./fesm2022/ngrx-signals-entities.mjs"
},
"./rxjs-interop": {
"types": "./rxjs-interop/index.d.ts",
"default": "./fesm2022/ngrx-signals-rxjs-interop.mjs"
}
}
}