@fun-tools/store 1.0.2 → 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 +31 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  > A simple and lightweight state management library for React apps
4
4
 
5
- [![npm version](https://img.shields.io/npm/v/@fun-tools/store.svg)](https://www.npmjs.com/package/@fun-tools/store)
6
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
7
6
 
8
7
  ## 📋 What is @fun-tools/store?
@@ -683,15 +682,43 @@ const cartStore = createStore({ states: { items: [] } });
683
682
  const themeStore = createStore({ states: { theme: "light" } });
684
683
  ```
685
684
 
685
+ ## 🤝 Contributors
686
+
687
+ This project is open source and welcomes contributions from the community! We appreciate all the developers who have helped make this library better.
688
+
689
+ ### How to Contribute
690
+
691
+ We welcome contributions of all kinds:
692
+
693
+ - 🐛 Bug fixes
694
+ - ✨ New features
695
+ - 📝 Documentation improvements
696
+ - 💡 Suggestions and ideas
697
+
698
+ To contribute:
699
+
700
+ 1. Fork the repository
701
+ 2. Create your feature branch (`git checkout -b feature/AmazingFeature`)
702
+ 3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)
703
+ 4. Push to the branch (`git push origin feature/AmazingFeature`)
704
+ 5. Open a Pull Request
705
+
706
+ ### Our Contributors
707
+
708
+ Thanks to all the amazing people who have contributed to this project! 🎉
709
+
710
+ <!-- Contributors list will be automatically updated -->
711
+
712
+ Want to see your name here? [Start contributing today!](https://github.com/fun-tools24/fun-tools-store/contribute)
686
713
 
687
714
  ## 🔗 Links
688
715
 
689
- - [GitHub Repository](https://github.com/yourusername/ex-store)
690
- - [Report Issues](https://github.com/yourusername/ex-store/issues)
716
+ - [GitHub Repository](https://github.com/fun-tools24/fun-tools-store)
717
+ - [Report Issues](https://github.com/fun-tools24/fun-tools-store/issues)
691
718
  - [NPM Package](https://www.npmjs.com/package/@fun-tools/store)
692
719
 
693
720
  ---
694
721
 
695
- **Made with ❤️ for developers who value simplicity by @Mustak24**
722
+ **Made with ❤️ for developers who value simplicity by @fun-tools24**
696
723
 
697
724
  Happy coding! 🚀
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fun-tools/store",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Lightweight external store for React, React Native and Next.js",
5
5
  "license": "MIT",
6
6