@phantompixeldev/retrocss 1.0.0 → 1.0.3

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 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -18,17 +18,17 @@ A retro-inspired CSS framework that brings the nostalgic Windows 95/98 aesthetic
18
18
  ### NPM
19
19
 
20
20
  ```bash
21
- npm install retrocss
21
+ npm install @phantompixeldev/retrocss
22
22
  ```
23
23
 
24
24
  ### CDN
25
25
 
26
26
  ```html
27
27
  <!-- CSS -->
28
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/retrocss/dist/retro.min.css">
28
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@phantompixeldev/retrocss/dist/retro.min.css">
29
29
 
30
30
  <!-- JavaScript -->
31
- <script src="https://cdn.jsdelivr.net/npm/retrocss/dist/retro.min.js"></script>
31
+ <script src="https://cdn.jsdelivr.net/npm/@phantompixeldev/retrocss/dist/retro.min.js"></script>
32
32
  ```
33
33
 
34
34
  ### Download
@@ -74,7 +74,7 @@ RetroCSS uses a modular JavaScript architecture with ES modules. All interactive
74
74
 
75
75
  ```javascript
76
76
  // Import all components (bundled version)
77
- import RetroCSS from 'retrocss';
77
+ import RetroCSS from '@phantompixeldev/retrocss';
78
78
 
79
79
  // Initialize all components
80
80
  RetroCSS.init();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phantompixeldev/retrocss",
3
- "version": "1.0.0",
3
+ "version": "1.0.3",
4
4
  "description": "A Retro-Inspired CSS Framework",
5
5
  "main": "dist/retro.css",
6
6
  "style": "dist/retro.css",