auto-skeleton-react 1.0.3 → 1.0.5

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 +11 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,7 +1,13 @@
1
1
  # auto-skeleton-react
2
2
 
3
+ ![npm version](https://img.shields.io/npm/v/auto-skeleton-react)
4
+ ![npm downloads](https://img.shields.io/npm/dm/auto-skeleton-react)
5
+ ![license](https://img.shields.io/npm/l/auto-skeleton-react)
6
+
3
7
  Auto-generate skeleton loading screens from your existing React DOM structure. Zero manual skeleton creation for 70-80% of use cases.
4
8
 
9
+ **[Live Demo](https://autoskeleton.shanukj.me)** | **[Documentation](https://autoskeleton.shanukj.me/docs)**
10
+
5
11
  ## Installation
6
12
 
7
13
  ```bash
@@ -11,6 +17,7 @@ npm install auto-skeleton-react
11
17
  ## Usage
12
18
 
13
19
  ```tsx
20
+ import { useState } from 'react';
14
21
  import { AutoSkeleton } from 'auto-skeleton-react';
15
22
 
16
23
  function MyComponent() {
@@ -125,6 +132,10 @@ src/
125
132
  - Virtualized tables or infinite scrollers
126
133
  - Performance-critical views with frequent loading
127
134
 
135
+ ## Contributing
136
+
137
+ Found a bug or have a feature request? [Open an issue](https://github.com/ShanukJ/auto-skeleton/issues) on GitHub.
138
+
128
139
  ## License
129
140
 
130
141
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "auto-skeleton-react",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "Auto-generate skeleton loading screens from your existing React DOM structure",
5
5
  "type": "module",
6
6
  "main": "dist/auto-skeleton-react.js",
@@ -34,7 +34,7 @@
34
34
  "bugs": {
35
35
  "url": "https://github.com/ShanukJ/auto-skeleton/issues"
36
36
  },
37
- "homepage": "https://github.com/ShanukJ/auto-skeleton#readme",
37
+ "homepage": "https://autoskeleton.shanukj.me",
38
38
  "license": "MIT",
39
39
  "peerDependencies": {
40
40
  "react": ">=18.0.0",