@ankhorage/zora-tabletop 0.0.5 → 0.0.6
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 +7 -0
- package/README.md +1 -1
- package/package.json +25 -17
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
# @ankhorage/zora-tabletop
|
|
5
5
|
|
|
6
|
-
         
|
|
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.
|
|
4
|
+
"version": "0.0.6",
|
|
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": ">=
|
|
65
|
+
"@ankhorage/zora": ">=3.3.1",
|
|
66
66
|
"react": ">=18.2.0",
|
|
67
67
|
"react-native": ">=0.72.0"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@ankhorage/devtools": "^1.
|
|
71
|
-
"@ankhorage/paradox": "^0.1.
|
|
72
|
-
"@ankhorage/zora": "^
|
|
73
|
-
"@
|
|
74
|
-
"@
|
|
75
|
-
"@
|
|
76
|
-
"@
|
|
77
|
-
"react": "^
|
|
78
|
-
"
|
|
79
|
-
"
|
|
70
|
+
"@ankhorage/devtools": "^1.9.2",
|
|
71
|
+
"@ankhorage/paradox": "^0.1.24",
|
|
72
|
+
"@ankhorage/zora": "^3.3.1",
|
|
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.
|
|
89
|
+
"packageManager": "bun@1.4.0"
|
|
82
90
|
}
|