lumidot 0.6.0 → 0.6.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.
Files changed (2) hide show
  1. package/README.md +4 -1
  2. package/package.json +13 -12
package/README.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # lumidot
2
2
 
3
- Dot-grid loading animations for React. Tiny, flexible, beautiful.
3
+ Dot-grid loading animations for React. Tiny, flexible, beautiful. 36 patterns & 20 colors.
4
+
5
+
6
+ Inspiration credit goes to Kevin's post: https://x.com/k_grajeda/status/2009281651260481675
4
7
 
5
8
  ![lumidot](./lumidot.gif)
6
9
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lumidot",
3
- "version": "0.6.0",
4
- "description": "Dot-grid loading animations for React. Tiny, flexible, beautiful.",
3
+ "version": "0.6.1",
4
+ "description": "Dot-grid loading animations for React. Tiny, flexible, beautiful. 36 patterns & 20 colors.",
5
5
  "license": "MIT",
6
6
  "author": {
7
7
  "email": "zainzafar90@gmail.com",
@@ -27,6 +27,15 @@
27
27
  "files": [
28
28
  "dist"
29
29
  ],
30
+ "scripts": {
31
+ "dev": "bunchee --watch",
32
+ "build": "bunchee --minify",
33
+ "type-check": "tsc --noEmit",
34
+ "dev:website": "turbo run dev --filter=website...",
35
+ "dev:test": "turbo run dev --filter=test...",
36
+ "format": "prettier --write .",
37
+ "test": "playwright test"
38
+ },
30
39
  "peerDependencies": {
31
40
  "react": "^18.0.0 || ^19.0.0",
32
41
  "react-dom": "^18.0.0 || ^19.0.0"
@@ -51,17 +60,9 @@
51
60
  "loading",
52
61
  "animation"
53
62
  ],
63
+ "packageManager": "pnpm@9.15.4",
54
64
  "repository": {
55
65
  "type": "git",
56
66
  "url": "https://github.com/zainzafar90/lumidot"
57
- },
58
- "scripts": {
59
- "dev": "bunchee --watch",
60
- "build": "bunchee --minify",
61
- "type-check": "tsc --noEmit",
62
- "dev:website": "turbo run dev --filter=website...",
63
- "dev:test": "turbo run dev --filter=test...",
64
- "format": "prettier --write .",
65
- "test": "playwright test"
66
67
  }
67
- }
68
+ }