react-app-store-buttons 0.1.31 → 0.1.46
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/README.md +6 -0
- package/package.json +9 -3
package/README.md
CHANGED
|
@@ -100,3 +100,9 @@ npm run dev # demo at http://localhost:5173
|
|
|
100
100
|
build # library build → dist/
|
|
101
101
|
typecheck
|
|
102
102
|
```
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
106
|
+
[](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request)
|
|
107
|
+
|
|
108
|
+
Please star this repo for updates! 🌟
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-app-store-buttons",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.46",
|
|
4
4
|
"description": "React components for app store and platform download buttons (App Store, Google Play, Chrome Extension, Windows, macOS, Linux)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -23,7 +23,10 @@
|
|
|
23
23
|
"build": "vite build && tsc --emitDeclarationOnly --declaration --declarationDir dist",
|
|
24
24
|
"dev": "vite --config vite.demo.config.ts",
|
|
25
25
|
"build:demo": "vite build --config vite.demo.config.ts",
|
|
26
|
-
"preview": "vite build --config vite.demo.config.ts && vite preview --config vite.demo.config.ts"
|
|
26
|
+
"preview": "vite build --config vite.demo.config.ts && vite preview --config vite.demo.config.ts",
|
|
27
|
+
"test": "vitest run",
|
|
28
|
+
"test:watch": "vitest",
|
|
29
|
+
"coverage": "vitest run --coverage"
|
|
27
30
|
},
|
|
28
31
|
"peerDependencies": {
|
|
29
32
|
"react": ">=17.0.0",
|
|
@@ -33,14 +36,17 @@
|
|
|
33
36
|
"@types/react": "^18.3.0",
|
|
34
37
|
"@types/react-dom": "^18.3.0",
|
|
35
38
|
"@vitejs/plugin-react": "^4.3.0",
|
|
39
|
+
"@vitest/coverage-v8": "^4.1.0",
|
|
36
40
|
"autoprefixer": "^10.4.20",
|
|
41
|
+
"jsdom": "^28.0.1",
|
|
37
42
|
"postcss": "^8.4.47",
|
|
38
43
|
"react": "^18.3.0",
|
|
39
44
|
"react-dom": "^18.3.0",
|
|
40
45
|
"tailwindcss": "^3.4.14",
|
|
41
46
|
"typescript": "^5.6.0",
|
|
42
47
|
"vite": "^5.4.0",
|
|
43
|
-
"vite-plugin-dts": "^4.3.0"
|
|
48
|
+
"vite-plugin-dts": "^4.3.0",
|
|
49
|
+
"vitest": "^4.1.0"
|
|
44
50
|
},
|
|
45
51
|
"keywords": [
|
|
46
52
|
"react",
|