@youversion/platform-react-ui 0.11.0 → 1.0.0
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/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@youversion/platform-react-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "React SDK for YouVersion Platform",
|
|
5
5
|
"license": "TBD",
|
|
6
6
|
"type": "module",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"lucide-react": "0.546.0",
|
|
40
40
|
"tailwind-merge": "3.3.1",
|
|
41
41
|
"tw-animate-css": "1.4.0",
|
|
42
|
-
"@youversion/platform-
|
|
43
|
-
"@youversion/platform-
|
|
42
|
+
"@youversion/platform-react-hooks": "1.0.0",
|
|
43
|
+
"@youversion/platform-core": "1.0.0"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"react": ">=19.1.0 <20.0.0",
|
|
@@ -106,8 +106,9 @@
|
|
|
106
106
|
"build:css": "tailwindcss -i src/styles/global.css -o dist/tailwind.css --minify && node scripts/strip-layers.js",
|
|
107
107
|
"build": "pnpm build:css && pnpm build:js && pnpm build:types",
|
|
108
108
|
"dev": "concurrently \"tailwindcss -i src/styles/global.css -o dist/tailwind.css --watch\" \"NODE_ENV=development tsup --watch\"",
|
|
109
|
-
"test": "vitest run",
|
|
110
|
-
"test:watch": "vitest",
|
|
109
|
+
"test": "vitest run --project unit",
|
|
110
|
+
"test:watch": "vitest --project unit",
|
|
111
|
+
"test:coverage": "vitest run --project unit --coverage",
|
|
111
112
|
"typecheck": "tsc --noEmit",
|
|
112
113
|
"lint": "eslint . --max-warnings 0",
|
|
113
114
|
"storybook": "concurrently \"tailwindcss -i src/styles/global.css -o dist/tailwind.css --watch\" \"storybook dev -p 6006\"",
|