@talismn/orb 0.2.0 → 0.2.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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @talismn/orb
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - c4d5967: bump typescript version
8
+ - 620b7eb: Dependency updates
9
+
3
10
  ## 0.2.0
4
11
 
5
12
  ### Minor Changes
@@ -1,5 +1,5 @@
1
1
  import { FC } from "react";
2
- declare type TalismanOrbProps = {
2
+ type TalismanOrbProps = {
3
3
  seed: string;
4
4
  width?: number;
5
5
  height?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@talismn/orb",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "author": "Talisman",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "publishConfig": {
@@ -19,22 +19,23 @@
19
19
  "clean": "rm -rf dist && rm -rf .turbo rm -rf node_modules"
20
20
  },
21
21
  "dependencies": {
22
- "@polkadot/util-crypto": "12.2.1",
23
22
  "blueimp-md5": "2.19.0",
24
23
  "color": "4.2.3",
25
- "nanoid": "3.3.6"
24
+ "nanoid": "3.3.7"
26
25
  },
27
26
  "devDependencies": {
28
- "@talismn/eslint-config": "0.0.2",
27
+ "@polkadot/util-crypto": "^12.3.2",
28
+ "@talismn/eslint-config": "0.0.3",
29
29
  "@talismn/tsconfig": "0.0.2",
30
30
  "@types/react": "18.0.14",
31
- "@types/react-dom": "18.0.5",
32
- "eslint": "^8.15.0",
31
+ "@types/react-dom": "18.2.18",
32
+ "eslint": "^8.52.0",
33
33
  "react": "18.2.0",
34
34
  "react-dom": "18.2.0",
35
- "typescript": "4.6.4"
35
+ "typescript": "^5.2.2"
36
36
  },
37
37
  "peerDependencies": {
38
+ "@polkadot/util-crypto": "12.x",
38
39
  "react": "*",
39
40
  "react-dom": "*"
40
41
  },