@reforgium/presentia 1.4.4 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
- "version": "1.4.4",
2
+ "version": "2.0.0",
3
3
  "name": "@reforgium/presentia",
4
- "description": "reforgium State modules",
4
+ "description": "Angular infrastructure library for i18n, route-aware namespace preload, theming, adaptive breakpoints, route state, and SEO",
5
5
  "author": "rtommievich",
6
6
  "license": "MIT",
7
7
  "type": "module",
8
8
  "repository": {
9
- "type": "git"
9
+ "type": "git",
10
+ "directory": "libs/presentia"
10
11
  },
11
12
  "bugs": {
12
13
  "email": "rtommievich@gmail.com"
@@ -20,13 +21,28 @@
20
21
  "npm": ">=9.0.0"
21
22
  },
22
23
  "bin": {
23
- "presentia-gen-lang-keys": "./bin/presentia-gen-lang-keys.mjs"
24
+ "presentia-gen-lang-keys": "./bin/presentia-gen-lang-keys.mjs",
25
+ "presentia-gen-namespaces": "./bin/presentia-gen-namespaces.mjs"
24
26
  },
25
27
  "keywords": [
26
28
  "reforgium",
27
- "state",
28
- "store",
29
- "signal",
29
+ "angular-library",
30
+ "infrastructure",
31
+ "i18n",
32
+ "localization",
33
+ "internationalization",
34
+ "i18n",
35
+ "translation",
36
+ "namespace-preload",
37
+ "route-preload",
38
+ "theme",
39
+ "theming",
40
+ "adaptive",
41
+ "responsive",
42
+ "breakpoints",
43
+ "route-state",
44
+ "signals",
45
+ "seo",
30
46
  "angular"
31
47
  ],
32
48
  "types": "../../dist/@reforgium/presentia/index.d.ts",
@@ -36,6 +52,8 @@
36
52
  "bin/*.mjs",
37
53
  "package.json",
38
54
  "README.md",
55
+ "V2-MIGRATION.md",
56
+ "V2-CONFIG.md",
39
57
  "CHANGELOG.md",
40
58
  "LICENSE*"
41
59
  ],
@@ -45,6 +63,8 @@
45
63
  "peerDependencies": {
46
64
  "@angular/common": ">=18.0.0",
47
65
  "@angular/core": ">=18.0.0",
66
+ "@angular/platform-browser": ">=18.0.0",
67
+ "@angular/router": ">=18.0.0",
48
68
  "@reforgium/internal": ">=1.2.0",
49
69
  "rxjs": ">=7.0.0"
50
70
  },