kimu-core 0.4.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 (146) hide show
  1. package/.editorconfig +30 -0
  2. package/.gitattributes +11 -0
  3. package/.github/FUNDING.yml +8 -0
  4. package/.github/copilot-instructions.md +103 -0
  5. package/.github/kimu-copilot-instructions.md +3779 -0
  6. package/.github/workflows/deploy-demo.yml +39 -0
  7. package/AUTHORS.md +20 -0
  8. package/CHANGELOG.md +20 -0
  9. package/CODE_GUIDELINES.md +165 -0
  10. package/CODE_OF_CONDUCT.md +47 -0
  11. package/CONTRIBUTING.md +62 -0
  12. package/FUNDING.md +31 -0
  13. package/ISSUE_GUIDELINES.md +74 -0
  14. package/LICENSE +17 -0
  15. package/LICENSE.it.md +17 -0
  16. package/MPL-2.0.txt +373 -0
  17. package/NOTICE +65 -0
  18. package/README-KIMU.md +40 -0
  19. package/README.it.md +208 -0
  20. package/README.md +266 -0
  21. package/SECURITY.md +64 -0
  22. package/docs/get-started-en.md +207 -0
  23. package/docs/images/icon.svg +64 -0
  24. package/docs/images/logo_kimu.png +0 -0
  25. package/docs/index.md +29 -0
  26. package/env/dev.config.json +6 -0
  27. package/env/local.config.json +6 -0
  28. package/env/prod.config.json +6 -0
  29. package/env/staging.config.json +6 -0
  30. package/env/test.config.json +4 -0
  31. package/icon.svg +10 -0
  32. package/logo_kimu.png +0 -0
  33. package/package.json +79 -0
  34. package/public/favicon.svg +64 -0
  35. package/public/logo_kimu.svg +1 -0
  36. package/scripts/build-all-config.js +59 -0
  37. package/scripts/build-all-core.js +65 -0
  38. package/scripts/build-all-extensions.js +64 -0
  39. package/scripts/build-all-modules.js +99 -0
  40. package/scripts/build-extension.js +60 -0
  41. package/scripts/clear-kimu-build.js +31 -0
  42. package/scripts/generate-kimu-build-config.js +79 -0
  43. package/scripts/install-module.js +162 -0
  44. package/scripts/list-modules.js +109 -0
  45. package/scripts/minify-css-assets.js +82 -0
  46. package/scripts/remove-module.js +122 -0
  47. package/scripts/utils/fix-imports.js +85 -0
  48. package/src/assets/index.css +43 -0
  49. package/src/assets/kimu-style.css +84 -0
  50. package/src/assets/style.css +116 -0
  51. package/src/config/kimu-base-config.json +5 -0
  52. package/src/core/index.ts +47 -0
  53. package/src/core/kimu-app.ts +76 -0
  54. package/src/core/kimu-asset-manager.ts +167 -0
  55. package/src/core/kimu-component-element.ts +325 -0
  56. package/src/core/kimu-component.ts +33 -0
  57. package/src/core/kimu-engine.ts +188 -0
  58. package/src/core/kimu-extension-manager.ts +281 -0
  59. package/src/core/kimu-global-styles.ts +136 -0
  60. package/src/core/kimu-module-manager.ts +69 -0
  61. package/src/core/kimu-module.ts +21 -0
  62. package/src/core/kimu-path-config.ts +127 -0
  63. package/src/core/kimu-reactive.ts +196 -0
  64. package/src/core/kimu-render.ts +91 -0
  65. package/src/core/kimu-store.ts +147 -0
  66. package/src/core/kimu-types.ts +65 -0
  67. package/src/extensions/.gitkeep +0 -0
  68. package/src/extensions/extensions-manifest.json +13 -0
  69. package/src/extensions/kimu-home/component.ts +80 -0
  70. package/src/extensions/kimu-home/lang/en.json +5 -0
  71. package/src/extensions/kimu-home/lang/it.json +5 -0
  72. package/src/extensions/kimu-home/style.css +61 -0
  73. package/src/extensions/kimu-home/view.html +51 -0
  74. package/src/index.html +26 -0
  75. package/src/main.ts +68 -0
  76. package/src/modules/.gitkeep +0 -0
  77. package/src/modules/README.md +79 -0
  78. package/src/modules/i18n/README.it.md +63 -0
  79. package/src/modules/i18n/README.md +63 -0
  80. package/src/modules/i18n/kimu-global-lang.ts +26 -0
  81. package/src/modules/i18n/kimu-i18n-service.ts +108 -0
  82. package/src/modules/i18n/manifest.json +22 -0
  83. package/src/modules/i18n/module.ts +39 -0
  84. package/src/modules/modules-manifest.json +12 -0
  85. package/src/modules-repository/README.md +108 -0
  86. package/src/modules-repository/api-axios/CHANGELOG.md +48 -0
  87. package/src/modules-repository/api-axios/QUICK-REFERENCE.md +178 -0
  88. package/src/modules-repository/api-axios/README.md +304 -0
  89. package/src/modules-repository/api-axios/api-axios-service.ts +355 -0
  90. package/src/modules-repository/api-axios/examples.ts +293 -0
  91. package/src/modules-repository/api-axios/index.ts +19 -0
  92. package/src/modules-repository/api-axios/interfaces.ts +71 -0
  93. package/src/modules-repository/api-axios/module.ts +41 -0
  94. package/src/modules-repository/api-core/CHANGELOG.md +42 -0
  95. package/src/modules-repository/api-core/QUICK-REFERENCE.md +192 -0
  96. package/src/modules-repository/api-core/README.md +435 -0
  97. package/src/modules-repository/api-core/api-core-service.ts +289 -0
  98. package/src/modules-repository/api-core/examples.ts +432 -0
  99. package/src/modules-repository/api-core/index.ts +8 -0
  100. package/src/modules-repository/api-core/interfaces.ts +83 -0
  101. package/src/modules-repository/api-core/module.ts +30 -0
  102. package/src/modules-repository/event-bus/README.md +273 -0
  103. package/src/modules-repository/event-bus/event-bus-service.ts +176 -0
  104. package/src/modules-repository/event-bus/module.ts +30 -0
  105. package/src/modules-repository/i18n/README.it.md +63 -0
  106. package/src/modules-repository/i18n/README.md +63 -0
  107. package/src/modules-repository/i18n/kimu-global-lang.ts +26 -0
  108. package/src/modules-repository/i18n/kimu-i18n-service.ts +108 -0
  109. package/src/modules-repository/i18n/manifest.json +22 -0
  110. package/src/modules-repository/i18n/module.ts +39 -0
  111. package/src/modules-repository/notification/README.md +423 -0
  112. package/src/modules-repository/notification/module.ts +30 -0
  113. package/src/modules-repository/notification/notification-service.ts +436 -0
  114. package/src/modules-repository/router/README.it.md +39 -0
  115. package/src/modules-repository/router/README.md +39 -0
  116. package/src/modules-repository/router/manifest.json +21 -0
  117. package/src/modules-repository/router/module.ts +23 -0
  118. package/src/modules-repository/router/router.ts +144 -0
  119. package/src/modules-repository/state/README.md +409 -0
  120. package/src/modules-repository/state/module.ts +30 -0
  121. package/src/modules-repository/state/state-service.ts +296 -0
  122. package/src/modules-repository/theme/README.md +267 -0
  123. package/src/modules-repository/theme/module.ts +30 -0
  124. package/src/modules-repository/theme/pre-build.js +40 -0
  125. package/src/modules-repository/theme/theme-service.ts +389 -0
  126. package/src/modules-repository/theme/themes/theme-cherry-blossom.css +78 -0
  127. package/src/modules-repository/theme/themes/theme-cozy.css +111 -0
  128. package/src/modules-repository/theme/themes/theme-cyberpunk.css +150 -0
  129. package/src/modules-repository/theme/themes/theme-dark.css +79 -0
  130. package/src/modules-repository/theme/themes/theme-forest.css +171 -0
  131. package/src/modules-repository/theme/themes/theme-gold.css +100 -0
  132. package/src/modules-repository/theme/themes/theme-high-contrast.css +126 -0
  133. package/src/modules-repository/theme/themes/theme-lava.css +101 -0
  134. package/src/modules-repository/theme/themes/theme-lavender.css +90 -0
  135. package/src/modules-repository/theme/themes/theme-light.css +79 -0
  136. package/src/modules-repository/theme/themes/theme-matrix.css +103 -0
  137. package/src/modules-repository/theme/themes/theme-midnight.css +81 -0
  138. package/src/modules-repository/theme/themes/theme-nord.css +94 -0
  139. package/src/modules-repository/theme/themes/theme-ocean.css +84 -0
  140. package/src/modules-repository/theme/themes/theme-retro80s.css +343 -0
  141. package/src/modules-repository/theme/themes/theme-sunset.css +62 -0
  142. package/src/modules-repository/theme/themes-config.d.ts +27 -0
  143. package/src/modules-repository/theme/themes-config.json +213 -0
  144. package/src/vite-env.d.ts +1 -0
  145. package/tsconfig.json +33 -0
  146. package/vite.config.ts +99 -0
@@ -0,0 +1,39 @@
1
+ name: Deploy Demo to GitHub Pages
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+ jobs:
9
+ build-and-deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v4
14
+
15
+ - name: Setup Node.js
16
+ uses: actions/setup-node@v4
17
+ with:
18
+ node-version: '20'
19
+
20
+ - name: Install dependencies
21
+ run: npm ci
22
+
23
+ - name: Build project
24
+ run: npm run build
25
+
26
+ - name: Sposta i file in demo/
27
+ run: |
28
+ mkdir -p dist/demo
29
+ shopt -s extglob
30
+ mv dist/!(demo) dist/demo/
31
+
32
+ - name: Deploy to GitHub Pages
33
+ uses: peaceiris/actions-gh-pages@v4
34
+ with:
35
+ github_token: ${{ secrets.GITHUB_TOKEN }}
36
+ publish_dir: ./dist
37
+ publish_branch: gh-pages
38
+ user_name: 'github-actions[bot]'
39
+ user_email: 'github-actions[bot]@users.noreply.github.com'
package/AUTHORS.md ADDED
@@ -0,0 +1,20 @@
1
+ # 👥 AUTHORS of KIMU – Keep It Minimal UI Framework
2
+
3
+ This project is created and maintained by:
4
+
5
+ - **Marco Di Pasquale** (alias *Hocram*)
6
+ Founder of [UnicòVerso](https://unicoverso.com)
7
+ [info@unicoverso.com](mailto:info@unicoverso.com)
8
+
9
+ ---
10
+
11
+ ## 🤝 Other Contributors
12
+
13
+ We gratefully acknowledge all contributions — code, ideas, feedback, or design — that help KIMU evolve.
14
+
15
+ If you have contributed and wish to be listed here, feel free to open a Pull Request or contact us directly.
16
+
17
+ ---
18
+
19
+ > _“Each extension is a thought. Each interface is a gesture.”_
20
+ > — The KIMU philosophy 🌱
package/CHANGELOG.md ADDED
@@ -0,0 +1,20 @@
1
+ # 🧩 kimu-core Changelog
2
+ > The modular runtime engine of the Keep It Minimal UI framework
3
+
4
+ ---
5
+
6
+ ## [0.1.0] - 2025-05-09
7
+ 🎉 **Initial public release of `kimu-core`**
8
+
9
+ ### Added
10
+ - Initial implementation of the `kimu-core`, KIMU runtime engine
11
+ - Dynamic extension system (HTML, JS, CSS auto-loading)
12
+ - Local state and memory caching
13
+ - Declarative UI using Web Components
14
+ - Zero-dependency setup (pure JavaScript)
15
+ - Extension manifest loader
16
+ - Internal event dispatch system
17
+ - Minimal UI philosophy embedded in structure and design
18
+ - Licensed under [Mozilla Public License 2.0 (MPL-2.0)](./LICENSE)
19
+
20
+ ---
@@ -0,0 +1,165 @@
1
+ # 🧩 KIMU Coding Guidelines
2
+
3
+ ## 🎯 Purpose
4
+
5
+ This document provides guidelines and best practices for writing code and developing features within the **KIMU – Keep It Minimal UI Framework**.
6
+ Its goal is to ensure consistency, readability, maintainability, and simplicity across the entire project.
7
+
8
+ ---
9
+
10
+ ## ✨ Core Principles
11
+
12
+ * **Minimalism first**: Write only what is necessary. Avoid over-engineering.
13
+ * **Clarity over cleverness**: Code should be easy to read and understand, even for new contributors.
14
+ * **Consistency**: Follow established naming conventions, file structures, and component patterns.
15
+ * **Composable and modular**: Keep components and functions focused on a single responsibility.
16
+ * **Lightweight mindset**: Prefer simple solutions with minimal dependencies.
17
+
18
+ ---
19
+
20
+ ## 📝 Code Style
21
+
22
+ * Use **camelCase** for variables and function names.
23
+ * Use **PascalCase** for component names and classes.
24
+ * Follow the existing folder structure and naming patterns.
25
+ * Write **self-explanatory function and variable names**.
26
+ * Keep functions **small and focused**.
27
+ * Add comments where logic is non-trivial.
28
+ * Use **whitespace and indentation** to enhance readability.
29
+
30
+ ---
31
+
32
+ ## 🏷️ Naming Conventions and Code Structure
33
+
34
+ KIMU follows simple and consistent naming rules to ensure readability and predictability.
35
+
36
+ ### 🟢 Variables and Functions
37
+
38
+ * Use **camelCase** for variable names and function names.
39
+
40
+ ```js
41
+ let userList = [];
42
+ function fetchData() { ... }
43
+ ```
44
+
45
+ ### 🟢 Classes and Components
46
+
47
+ * Use **PascalCase** for component names and class declarations.
48
+
49
+ ```js
50
+ class KimuButton { ... }
51
+ export class UserProfileCard { ... }
52
+ ```
53
+
54
+ ### 🟢 Constants
55
+
56
+ * Use **UPPER\_SNAKE\_CASE** for global constants.
57
+
58
+ ```js
59
+ const API_ENDPOINT = '/api/v1/data';
60
+ ```
61
+
62
+ ### 🟢 File and Folder Names
63
+
64
+ * Use **kebab-case** for file and folder names.
65
+
66
+ ```bash
67
+ /user-profile-card/
68
+ user-profile-card.component.js
69
+ ```
70
+
71
+ ### 🟢 Methods inside Classes
72
+
73
+ * Use **camelCase** for method names.
74
+
75
+ ```js
76
+ class KimuButton {
77
+ handleClick() { ... }
78
+ }
79
+ ```
80
+
81
+ ### 🟢 Events and Custom Attributes
82
+
83
+ * Use **kebab-case** for custom events and HTML attributes.
84
+
85
+ ```html
86
+ <kimu-button @click="handleClick" data-user-id="123"></kimu-button>
87
+ ```
88
+
89
+ ### 🟢 Private Variables and Methods
90
+
91
+ * Prefix with an underscore `_` for private-like semantics.
92
+
93
+ ```js
94
+ class UserProfile {
95
+ _validateData() { ... }
96
+ }
97
+ ```
98
+
99
+ ---
100
+
101
+ ## ✅ Why Naming Matters
102
+
103
+ Consistent naming helps:
104
+
105
+ * Understand code faster.
106
+ * Reduce cognitive load.
107
+ * Maintain a clean and professional codebase.
108
+
109
+ KIMU values clarity and simplicity. Every name should tell a story of its purpose.
110
+
111
+ ---
112
+
113
+ ## 🧩 Components and Files
114
+
115
+ * Each UI component should live in its **own folder**, with related styles and templates.
116
+ * Reuse existing utilities and helpers where possible.
117
+ * Avoid duplicating logic — prefer shared services and composable functions.
118
+
119
+ ---
120
+
121
+ ## 🧪 Testing and Validation
122
+
123
+ * Ensure new features are tested, especially critical or shared functionalities.
124
+ * Run existing tests before submitting a Pull Request.
125
+ * Manual testing is encouraged for UI interactions and visual changes.
126
+
127
+ ---
128
+
129
+ ## 📖 Documentation
130
+
131
+ * Update or create documentation for any new feature, component, or API.
132
+ * Keep README files up to date in each module or component folder.
133
+
134
+ ---
135
+
136
+ ## ✅ Commit Guidelines
137
+
138
+ * Use clear and concise commit messages.
139
+ * Follow this format:
140
+
141
+ ```
142
+ [type]: short description
143
+
144
+ [optional body with more context]
145
+ ```
146
+
147
+ Examples of types: `fix`, `feature`, `refactor`, `docs`, `chore`
148
+
149
+ ---
150
+
151
+ ## 🙏 Why It Matters
152
+
153
+ Following these guidelines ensures KIMU remains:
154
+
155
+ * **Easy to understand** for new contributors.
156
+ * **Simple to maintain** and extend.
157
+ * **Consistent and reliable** across all modules.
158
+
159
+ Thank you for writing code that reflects the KIMU philosophy of minimal, meaningful design.
160
+
161
+ ---
162
+
163
+ For any questions or clarifications, please reach out via [GitHub Issues](https://github.com/unicoverso/kimu/issues) or contact the maintainer.
164
+
165
+ Marco Di Pasquale - Hocram (UnicòVerso)
@@ -0,0 +1,47 @@
1
+ # Code of Conduct for KIMU
2
+
3
+ All contributors are required to abide by this code of conduct.
4
+
5
+ ## 🌿 Our Commitment
6
+
7
+ KIMU is a community built on respect, openness, and shared growth.
8
+ We are committed to providing a welcoming and inclusive environment for everyone, regardless of background, experience or identity.
9
+
10
+ ## 🤝 Principles
11
+
12
+ * Respect others, always.
13
+ * No discrimination, racism, sexism, bullying or insults.
14
+ * Communicate constructively, with kindness and openness to dialogue.
15
+ * Assume good faith and be patient in discussions.
16
+ * Value diversity of perspectives and experiences.
17
+ * Be respectful, patient, and kind in all interactions.
18
+ * Value diversity of opinions and perspectives.
19
+ * Collaborate in good faith, assuming positive intent.
20
+ * Use inclusive and professional language.
21
+ * Provide constructive feedback and engage in healthy discussions.
22
+
23
+ ## 🚫 Unacceptable Behavior
24
+
25
+ * Harassment, abuse, or discrimination of any kind.
26
+ * Personal attacks, insults, or derogatory comments.
27
+ * Dismissive or exclusionary behavior.
28
+ * Sharing offensive or inappropriate content.
29
+ * Any conduct that disrupts the community or project.
30
+
31
+ ## 📢 Reporting Issues
32
+
33
+ If you experience or witness unacceptable behavior, please report it by contacting:
34
+
35
+ **Marco Di Pasquale (UnicòVerso)**
36
+ Email: [info@unicoverso.com](mailto:info@unicoverso.com)
37
+
38
+ All reports will be handled confidentially and with utmost care.
39
+
40
+ ## ⚖️ Enforcement
41
+
42
+ Violations of this Code of Conduct may result in warnings, removal from the community, or other appropriate actions, at the discretion of the maintainers.
43
+
44
+ ## 🙏 Thank You
45
+
46
+ Thank you for helping us create a respectful and inclusive space.
47
+ Together, we can ensure KIMU remains a space for meaningful collaboration and innovation.
@@ -0,0 +1,62 @@
1
+ # Contributing to KIMU
2
+
3
+ Thank you for your interest in contributing to **KIMU – Keep It Minimal UI - Framework**!
4
+ We welcome all kinds of contributions: bug fixes, improvements, ideas, documentation updates, and more.
5
+
6
+ This document outlines the basic guidelines for contributing to KIMU.
7
+
8
+ ## 📥 How to Contribute
9
+
10
+ 1. **Fork the repository**.
11
+
12
+ 2. **Create a new branch**
13
+ ```bash
14
+ git checkout -b feature/your-feature-name
15
+ ```
16
+
17
+ 3. **Make your changes** in a clean and focused way.
18
+
19
+ 4. **Test your changes** to ensure they work as intended.
20
+
21
+ 5. **Submit a pull request (PR)** with a clear description of what you changed and why.
22
+
23
+ 6. Please be respectful and constructive in code reviews and discussions.
24
+
25
+ ## 🧪 Testing and Style
26
+
27
+ - Follow existing style conventions.
28
+ - Keep your code readable and well-commented.
29
+ - Run tests if you change critical components.
30
+
31
+ ## 💡 Issues and Suggestions
32
+
33
+ * Found a bug? Please open an [issue](https://github.com/unicoverso/kimu/issues) with a clear description and steps to reproduce it.
34
+ * Have an idea or suggestion? We'd love to hear it!
35
+
36
+ ## 📝 Contribution Scope
37
+
38
+ By contributing to this project (via pull request, issue, or otherwise), you agree that your contribution:
39
+
40
+ * May become part of the evolving KIMU framework.
41
+ * May be reused in different contexts or formats as KIMU continues to grow and adapt.
42
+ * Will always be credited where appropriate and used with respect for your work.
43
+
44
+ For details on attribution, naming, and usage, please refer to the [NOTICE](./NOTICE) file.
45
+
46
+ ## ⚖️ License Agreement
47
+
48
+ All contributions are made under the same license as the project: [Mozilla Public License 2.0 (MPL-2.0)](./LICENSE).
49
+
50
+ Please ensure your contributions are compatible with this license.
51
+
52
+ ## 🤝 Code of Conduct
53
+
54
+ We are committed to fostering a welcoming and respectful community.
55
+ Please read and follow our [Code of Conduct](./CODE_OF_CONDUCT.md).
56
+
57
+ ## 🙏 Thank You!
58
+
59
+ Every contribution, no matter how small, helps make KIMU better.
60
+
61
+ Thank you for making KIMU better!
62
+ Thank you for being part of this vision!
package/FUNDING.md ADDED
@@ -0,0 +1,31 @@
1
+ # Supporta KIMU-Core / Support KIMU-Core
2
+
3
+ 🇮🇹 **Vuoi sostenere lo sviluppo di KIMU-Core?**
4
+ Il tuo contributo aiuta a mantenere il progetto open source, migliorarne le funzionalità e supportare la community!
5
+
6
+ Puoi donare tramite:
7
+ - [GitHub Sponsors](https://github.com/sponsors/hocram)
8
+ - [OpenCollective](https://opencollective.com/unicoverso)
9
+ - [Patreon](https://www.patreon.com/UnicoVerso)
10
+ - [Ko-fi](https://ko-fi.com/marcodipasquale)
11
+ - [PayPal](https://paypal.me/marcodipasquale)
12
+ - [BuyMeACoffee](https://www.buymeacoffee.com/hocram)
13
+ - [unicoverso.com/dona](https://unicoverso.com/dona)
14
+
15
+ Ogni donazione, anche piccola, fa la differenza!
16
+
17
+ ---
18
+
19
+ 🇬🇧 **Want to support KIMU-Core development?**
20
+ Your contribution helps keep the project open source, improve its features, and support the community!
21
+
22
+ You can donate via:
23
+ - [GitHub Sponsors](https://github.com/sponsors/hocram)
24
+ - [OpenCollective](https://opencollective.com/unicoverso)
25
+ - [Patreon](https://www.patreon.com/UnicoVerso)
26
+ - [Ko-fi](https://ko-fi.com/marcodipasquale)
27
+ - [PayPal](https://paypal.me/marcodipasquale)
28
+ - [BuyMeACoffee](https://www.buymeacoffee.com/hocram)
29
+ - [unicoverso.com/dona](https://unicoverso.com/dona)
30
+
31
+ Every donation, even small, makes a difference!
@@ -0,0 +1,74 @@
1
+ # 🪶 Issue Guidelines for KIMU
2
+
3
+ Welcome to the issue tracker for **KIMU – Keep It Minimal UI Framework**.
4
+
5
+ Thank you for helping improve this lightweight, poetic ecosystem. 🌱
6
+
7
+ We appreciate your feedback, questions, bug reports and suggestions.
8
+
9
+ To keep everything clear and efficient for everyone, please follow these simple guidelines.
10
+
11
+ ---
12
+
13
+ ## 📝 Before Opening an Issue
14
+
15
+ 1. **Check for duplicates** – Please search the [existing issues](https://github.com/unicoverso/kimu-core/issues) before opening a new one.
16
+ 2. **Be concise, yet complete** – Describe the issue or idea clearly, including:
17
+ - What you expected to happen
18
+ - What actually happened
19
+ - Steps to reproduce (if it's a bug)
20
+ - Environment info (browser, OS, version, etc.)
21
+ 3. **Use a meaningful title** – A clear summary helps others understand the topic quickly.
22
+
23
+ ---
24
+
25
+ ## 🧭 Choose the Right Type
26
+
27
+ When creating a new issue, please specify the type:
28
+
29
+ - 🐞 **Bug** – Something isn’t working as expected.
30
+ - 💡 **Feature request** – You’d like to see something new.
31
+ - ❓ **Question** – You're unsure how something works.
32
+ - 🧪 **Design/API discussion** – Suggestions on how to improve structure or usage.
33
+ - 📚 **Docs** – Missing or unclear documentation.
34
+
35
+ ---
36
+
37
+ ## 🏷️ Labeling and Tagging
38
+
39
+ - We’ll apply labels like `bug`, `enhancement`, `help wanted`, or `good first issue` as needed.
40
+ - If you’re contributing regularly, feel free to propose labels as well.
41
+
42
+ ---
43
+
44
+ ## ⏳ Team Response
45
+
46
+ - We aim to respond to issues within a few days.
47
+ - We might ask follow-up questions to clarify the situation or request a reproduction.
48
+ - Constructive tone is welcome — we're building something meaningful together.
49
+
50
+ ---
51
+
52
+ ## 🌟 Contributing Fixes
53
+
54
+ If you’re reporting a bug **and** want to contribute a fix, that’s wonderful!
55
+
56
+ Please mention it in your issue or directly open a Pull Request referencing the issue number.
57
+
58
+ ---
59
+
60
+ ## 💬 Need Help?
61
+
62
+ You can also reach out for clarifications via GitHub Discussions or contact the maintainer.
63
+
64
+ See the [README](./README.md) for contact details.
65
+
66
+ ---
67
+
68
+ > _“Each extension is a thought. Each interface is a gesture.”_
69
+ Help us make those thoughts and gestures meaningful.
70
+
71
+ Thank you for being part of the KIMU journey. 🙏
72
+
73
+ — The KIMU philosophy 🌱
74
+
package/LICENSE ADDED
@@ -0,0 +1,17 @@
1
+ # Licenses of KIMU - Keep It Minimal UI Framework
2
+
3
+ ## Mozilla Public License Version 2.0
4
+
5
+ KIMU is licensed under the **Mozilla Public License, Version 2.0 (MPL-2.0)**.
6
+
7
+ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
8
+ You can redistribute and/or modify this software under the terms of the Mozilla Public License v. 2.0 (MPL-2.0).
9
+
10
+ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+
12
+ You may read the full license text in the file [`MPL-2.0.txt`](./MPL-2.0.txt),
13
+ or online at: [https://www.mozilla.org/MPL/2.0/](https://www.mozilla.org/MPL/2.0/)
14
+
15
+ See also [NOTICE](NOTICE) for attribution and trademark details.
16
+
17
+ Copyright - © 2024–2025 Marco Di Pasquale (UnicòVerso)
package/LICENSE.it.md ADDED
@@ -0,0 +1,17 @@
1
+ # Licenses of KIMU - Keep It Minimal UI Framework
2
+
3
+ ## Mozilla Public License Version 2.0
4
+
5
+ KIMU è distribuito sotto termini della **Mozilla Public License, Version 2.0 (MPL-2.0)**.
6
+
7
+ Il presente codice sorgente è soggetto ai termini della Mozilla Public License, Versione 2.0.
8
+ È possibile redistribuire e/o modificare questo software nel rispetto dei termini della MPL v. 2.0.
9
+
10
+ Salvo ove diversamente richiesto dalla legge o concordato per iscritto, il software distribuito sotto questa licenza è fornito "COSÌ COM'È", **senza garanzie o condizioni di alcun tipo**, esplicite o implicite.
11
+
12
+ Puoi leggere il testo completo della licenza nel file [`MPL-2.0.txt`](./MPL-2.0.txt),
13
+ oppure online su: [https://www.mozilla.org/MPL/2.0/](https://www.mozilla.org/MPL/2.0/)
14
+
15
+ Vedi anche [NOTICE](NOTICE) per i dettagli su attribuzione e marchi.
16
+
17
+ Copyright - © 2024–2025 Marco Di Pasquale (UnicòVerso)