@libp2p/crypto 5.0.7-8a9258a24 → 5.0.7-a0c8ceb99

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 (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +9 -9
  3. package/LICENSE +0 -4
package/README.md CHANGED
@@ -38,7 +38,7 @@ $ npm i @libp2p/crypto
38
38
 
39
39
  ## Browser `<script>` tag
40
40
 
41
- Loading this module through a script tag will make it's exports available as `Libp2pCrypto` in the global namespace.
41
+ Loading this module through a script tag will make its exports available as `Libp2pCrypto` in the global namespace.
42
42
 
43
43
  ```html
44
44
  <script src="https://unpkg.com/@libp2p/crypto/dist/index.min.js"></script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/crypto",
3
- "version": "5.0.7-8a9258a24",
3
+ "version": "5.0.7-a0c8ceb99",
4
4
  "description": "Crypto primitives for libp2p",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/crypto#readme",
@@ -92,20 +92,20 @@
92
92
  "generate": "protons ./src/keys/keys.proto"
93
93
  },
94
94
  "dependencies": {
95
- "@libp2p/interface": "2.2.1-8a9258a24",
96
- "@noble/curves": "^1.4.0",
97
- "@noble/hashes": "^1.4.0",
95
+ "@libp2p/interface": "2.2.1-a0c8ceb99",
96
+ "@noble/curves": "^1.7.0",
97
+ "@noble/hashes": "^1.6.1",
98
98
  "asn1js": "^3.0.5",
99
- "multiformats": "^13.1.0",
100
- "protons-runtime": "^5.4.0",
99
+ "multiformats": "^13.3.1",
100
+ "protons-runtime": "^5.5.0",
101
101
  "uint8arraylist": "^2.4.8",
102
102
  "uint8arrays": "^5.1.0"
103
103
  },
104
104
  "devDependencies": {
105
- "@types/mocha": "^10.0.6",
106
- "aegir": "^44.0.1",
105
+ "@types/mocha": "^10.0.10",
106
+ "aegir": "^45.0.5",
107
107
  "benchmark": "^2.1.4",
108
- "protons": "^7.5.0"
108
+ "protons": "^7.6.0"
109
109
  },
110
110
  "browser": {
111
111
  "./dist/src/ciphers/aes-gcm.js": "./dist/src/ciphers/aes-gcm.browser.js",
package/LICENSE DELETED
@@ -1,4 +0,0 @@
1
- This project is dual licensed under MIT and Apache-2.0.
2
-
3
- MIT: https://www.opensource.org/licenses/mit
4
- Apache-2.0: https://www.apache.org/licenses/license-2.0