@ratespecial/logto-angular 1.0.0 → 1.0.1
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/README.md +4 -4
- package/package.json +9 -4
package/README.md
CHANGED
|
@@ -16,9 +16,9 @@ An Angular 21+ library that wraps [`@logto/browser`](https://docs.logto.io/sdk/b
|
|
|
16
16
|
|
|
17
17
|
| Dependency | Version |
|
|
18
18
|
|---|---|
|
|
19
|
-
| `@angular/core` | ^21
|
|
20
|
-
| `@angular/common` | ^21
|
|
21
|
-
| `@angular/router` | ^21
|
|
19
|
+
| `@angular/core` | ^21 |
|
|
20
|
+
| `@angular/common` | ^21 |
|
|
21
|
+
| `@angular/router` | ^21 |
|
|
22
22
|
| `@logto/browser` | ^3.0.13 |
|
|
23
23
|
| `rxjs` | ~7.8.0 |
|
|
24
24
|
|
|
@@ -503,5 +503,5 @@ Update `version` in `projects/logto-angular/package.json`, then:
|
|
|
503
503
|
|
|
504
504
|
```bash
|
|
505
505
|
ng build logto-angular
|
|
506
|
-
npm publish dist/logto-angular --access
|
|
506
|
+
npm publish dist/logto-angular --access public
|
|
507
507
|
```
|
package/package.json
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ratespecial/logto-angular",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Angular Logto.io integration using @logto/browser",
|
|
5
5
|
"author": "kpierce@ratespecial.com",
|
|
6
6
|
"homepage": "https://github.com/ratespecial/logto-angular",
|
|
7
7
|
"license": "MIT",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"angular",
|
|
10
|
+
"oidc",
|
|
11
|
+
"logto"
|
|
12
|
+
],
|
|
8
13
|
"repository": {
|
|
9
14
|
"type": "git",
|
|
10
15
|
"url": "git+https://github.com/ratespecial/logto-angular.git"
|
|
@@ -13,9 +18,9 @@
|
|
|
13
18
|
"url": "https://github.com/ratespecial/logto-angular/issues"
|
|
14
19
|
},
|
|
15
20
|
"peerDependencies": {
|
|
16
|
-
"@angular/common": "
|
|
17
|
-
"@angular/core": "
|
|
18
|
-
"@angular/router": "
|
|
21
|
+
"@angular/common": ">=21",
|
|
22
|
+
"@angular/core": ">=21",
|
|
23
|
+
"@angular/router": ">=21",
|
|
19
24
|
"@logto/browser": "^3.0.13",
|
|
20
25
|
"rxjs": "~7.8.0"
|
|
21
26
|
},
|