@tavosud/sky-skeleton 1.0.0 → 1.0.2

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 +7 -1
  2. package/package.json +8 -1
package/README.md CHANGED
@@ -2,7 +2,13 @@
2
2
 
3
3
  Lightweight, zero-dependency React skeleton loader with a GPU-accelerated CSS shimmer. Built for performance — under **1.3 KB** (ESM, minified), zero repaints.
4
4
 
5
- [![Tests](https://img.shields.io/badge/tests-33%20passed-brightgreen)](#testing)
5
+ [![npm version](https://img.shields.io/npm/v/@tavosud/sky-skeleton?color=CB3837&logo=npm&logoColor=white)](https://www.npmjs.com/package/@tavosud/sky-skeleton)
6
+ [![npm downloads](https://img.shields.io/npm/dm/@tavosud/sky-skeleton?color=CB3837&logo=npm&logoColor=white)](https://www.npmjs.com/package/@tavosud/sky-skeleton)
7
+ [![bundle size](https://img.shields.io/badge/bundle-~1.3%20KB-informational?logo=webpack&logoColor=white)](https://bundlephobia.com/package/@tavosud/sky-skeleton)
8
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5-3178C6?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
9
+ [![React](https://img.shields.io/badge/React-%3E%3D17-61DAFB?logo=react&logoColor=white)](https://reactjs.org/)
10
+ [![license](https://img.shields.io/badge/license-MIT-green?logo=opensourceinitiative&logoColor=white)](./LICENSE)
11
+ [![Tests](https://img.shields.io/badge/tests-33%20passed-brightgreen?logo=vitest&logoColor=white)](#testing)
6
12
  [![Ko-fi](https://img.shields.io/badge/Buy%20me%20a%20coffee-Ko--fi-FF5E5B?logo=ko-fi&logoColor=white)](https://ko-fi.com/tavosud)
7
13
 
8
14
  ## Features
package/package.json CHANGED
@@ -1,10 +1,17 @@
1
1
  {
2
2
  "name": "@tavosud/sky-skeleton",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Lightweight zero-dependency React skeleton loader with shimmer effect",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
7
7
  "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.esm.js",
11
+ "require": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
8
15
  "files": [
9
16
  "dist"
10
17
  ],