@ankhorage/zora-tabletop 0.0.5 → 0.0.7

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/CHANGELOG.md +13 -0
  2. package/README.md +1 -1
  3. package/package.json +25 -17
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @ankhorage/zora-tabletop
2
2
 
3
+ ## 0.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - c420ae7: Update Ankhorage dependencies: `@ankhorage/zora`.
8
+
9
+ ## 0.0.6
10
+
11
+ ### Patch Changes
12
+
13
+ - ae78fc9: Update Ankhorage dependencies: `@ankhorage/paradox`, `@ankhorage/zora`.
14
+ - 67b6760: Update Ankhorage dependencies: `@ankhorage/zora`.
15
+
3
16
  ## 0.0.5
4
17
 
5
18
  ### Patch Changes
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  # @ankhorage/zora-tabletop
5
5
 
6
- ![license: MIT](././paradox/badges/license.svg) ![npm: v0.0.4](././paradox/badges/npm.svg) ![runtime: bun](././paradox/badges/runtime.svg) ![typescript: strict](././paradox/badges/typescript.svg) ![eslint: checked](././paradox/badges/eslint.svg) ![prettier: checked](././paradox/badges/prettier.svg) ![build: checked](././paradox/badges/build.svg) ![tests: checked](././paradox/badges/tests.svg) ![docs: paradox](././paradox/badges/docs.svg)
6
+ ![license: MIT](././paradox/badges/license.svg) ![npm: v0.0.5](././paradox/badges/npm.svg) ![runtime: bun](././paradox/badges/runtime.svg) ![typescript: strict](././paradox/badges/typescript.svg) ![eslint: checked](././paradox/badges/eslint.svg) ![prettier: checked](././paradox/badges/prettier.svg) ![build: checked](././paradox/badges/build.svg) ![tests: checked](././paradox/badges/tests.svg) ![docs: paradox](././paradox/badges/docs.svg)
7
7
 
8
8
  Reusable tabletop, playing-card, seat, token, and card-game presentation components for React Native and React Native Web.
9
9
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ankhorage/zora-tabletop",
3
3
  "type": "module",
4
- "version": "0.0.5",
4
+ "version": "0.0.7",
5
5
  "description": "Tabletop and card-game UI primitives for React Native and React Native Web, built on ZORA.",
6
6
  "homepage": "https://github.com/ankhorage/zora-tabletop#readme",
7
7
  "bugs": {
@@ -48,10 +48,9 @@
48
48
  },
49
49
  "scripts": {
50
50
  "build": "rm -rf dist tsconfig.tsbuildinfo && bun x tsc -p tsconfig.json",
51
- "changeset": "changeset",
52
- "changeset:status": "changeset status --since=origin/main",
51
+ "changeset": "ankhorage-changeset",
52
+ "changeset:status": "ankhorage-changeset status --since=origin/main",
53
53
  "docs": "paradox",
54
- "knip": "ankhorage-knip",
55
54
  "lint": "ankhorage-eslint . --max-warnings=0",
56
55
  "lint:fix": "ankhorage-eslint . --fix --max-warnings=0",
57
56
  "format": "ankhorage-prettier --write .",
@@ -59,24 +58,33 @@
59
58
  "prepack": "bun run build",
60
59
  "test": "bun test src",
61
60
  "typecheck": "bun x tsc --noEmit -p tsconfig.json",
62
- "version-packages": "changeset version"
61
+ "version-packages": "ankhorage-changeset version",
62
+ "knip:check": "ankhorage-knip"
63
63
  },
64
64
  "peerDependencies": {
65
- "@ankhorage/zora": ">=0.1.0",
65
+ "@ankhorage/zora": ">=3.3.4",
66
66
  "react": ">=18.2.0",
67
67
  "react-native": ">=0.72.0"
68
68
  },
69
69
  "devDependencies": {
70
- "@ankhorage/devtools": "^1.0.6",
71
- "@ankhorage/paradox": "^0.1.10",
72
- "@ankhorage/zora": "^2.6.1",
73
- "@changesets/cli": "^2.31.0",
74
- "@types/bun": "^1.3.13",
75
- "@types/node": "^25.6.0",
76
- "@types/react": "^19.1.8",
77
- "react": "^19.1.0",
78
- "react-native": "^0.81.5",
79
- "typescript": "^5.9.3"
70
+ "@ankhorage/devtools": "^1.10.4",
71
+ "@ankhorage/paradox": "^0.1.24",
72
+ "@ankhorage/zora": "^3.3.4",
73
+ "@react-native-picker/picker": "2.11.4",
74
+ "@react-native-vector-icons/fontawesome": "^13.1.3",
75
+ "@react-native-vector-icons/fontawesome5": "^13.1.3",
76
+ "@react-native-vector-icons/fontawesome6": "^13.1.3",
77
+ "@react-native-vector-icons/ionicons": "^13.1.3",
78
+ "@types/bun": "^1.4.0",
79
+ "@types/node": "^24.13.3",
80
+ "@types/react": "^19.2.18",
81
+ "@types/react-dom": "^19.2.4",
82
+ "react": "19.2.3",
83
+ "react-dom": "19.2.3",
84
+ "react-native": "0.86.2",
85
+ "react-native-safe-area-context": "~5.7.0",
86
+ "react-native-web": "~0.21.0",
87
+ "typescript": "~6.0.3"
80
88
  },
81
- "packageManager": "bun@1.3.13"
89
+ "packageManager": "bun@1.4.0"
82
90
  }