@bitblit/ratchet-warden-common 6.1.185-alpha → 6.1.192-alpha

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.
Files changed (2) hide show
  1. package/package.json +13 -5
  2. package/CHANGELOG.md +0 -19
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitblit/ratchet-warden-common",
3
- "version": "6.1.185-alpha",
3
+ "version": "6.1.192-alpha",
4
4
  "description": "Typescript library to simplify using simplewebauthn and secondary auth methods over GraphQL",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -47,13 +47,21 @@
47
47
  },
48
48
  "license": "Apache-2.0",
49
49
  "dependencies": {
50
- "@bitblit/ratchet-common": "6.1.185-alpha",
50
+ "@bitblit/ratchet-common": "6.1.192-alpha",
51
51
  "@simplewebauthn/browser": "13.2.2",
52
- "jwt-decode": "4.0.0"
52
+ "jwt-decode": "4.0.0",
53
+ "rxjs": "7.8.2"
53
54
  },
54
55
  "peerDependencies": {
55
- "@bitblit/ratchet-common": "^6.1.185-alpha",
56
+ "@bitblit/ratchet-common": "^6.1.192-alpha",
56
57
  "@simplewebauthn/browser": "^13.2.2",
57
- "jwt-decode": "^4.0.0"
58
+ "jwt-decode": "^4.0.0",
59
+ "rxjs": "^7.8.2"
60
+ },
61
+ "scripts": {
62
+ "build": "tsc",
63
+ "test": "vitest run",
64
+ "test-coverage": "vitest run --coverage",
65
+ "custom-publish": "pnpm publish --access public --provenance --tag $GITHUB_REF_NAME --no-git-checks"
58
66
  }
59
67
  }
package/CHANGELOG.md DELETED
@@ -1,19 +0,0 @@
1
- # Changelog
2
- All notable changes to this project will be documented in this file.
3
-
4
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
-
7
- ## [Notes]
8
- Alpha releases are exactly what they sound like - places where I am trying out new things that aren't ready for prime
9
- time, but I need published to see how they interact with the rest of my software ecosystem. If you use an alpha
10
- package without knowing why it is alpha you'll get exactly what you deserve.
11
-
12
- ## [Unreleased]
13
-
14
- ## In Flight
15
-
16
- ## [0.0.x] - 2018-03-23
17
- ### Initial Release
18
- - Basic support for Warden, email and text messaging, and a simplified interface for bootstrapping over GraphQL
19
-