@dbcube/core 0.0.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.
package/.npmignore ADDED
@@ -0,0 +1,52 @@
1
+ # Directories
2
+ examples
3
+ bin
4
+
5
+ # Ignorar dependencias y configuraciones de desarrollo
6
+ node_modules/
7
+ npm-debug.log*
8
+ yarn-debug.log*
9
+ yarn-error.log*
10
+
11
+ # Ignorar carpetas y archivos irrelevantes
12
+ .vscode/
13
+ .lh
14
+ .idea/
15
+ .DS_Store
16
+ Thumbs.db
17
+ *.log
18
+
19
+ # Ignorar configuraciones del proyecto
20
+ .env
21
+ .env.*.local
22
+ package-lock.json
23
+
24
+ # Ignorar archivos del sistema
25
+ *.swp
26
+ *.swo
27
+ *.tmp
28
+ *.temp
29
+
30
+ # Ignorar carpetas de trabajo
31
+ temp/
32
+ logs/
33
+ debug/
34
+
35
+ # Ignorar archivos de compilación
36
+ src/
37
+ tsconfig.json
38
+ tsconfig.tsbuildinfo
39
+
40
+ # Ignorar pruebas y configuraciones
41
+ tests/
42
+ __tests__/
43
+ __mocks__/
44
+ coverage/
45
+ jest.config.js
46
+
47
+ # Ignorar documentación o ejemplos no necesarios
48
+ docs/
49
+ examples/
50
+
51
+ # Asegurarse de incluir solo lo esencial
52
+ !.npmignore
@@ -0,0 +1,9 @@
1
+ ## Colaboración
2
+
3
+ Si deseas contribuir a este proyecto, sigue estos pasos:
4
+
5
+ 1. Haz un fork del repositorio.
6
+ 2. Crea una nueva rama (`git checkout -b feature/nueva-caracteristica`).
7
+ 3. Realiza tus cambios y haz commit de ellos (`git commit -am 'Añadir nueva característica'`).
8
+ 4. Sube tu rama (`git push origin feature/nueva-caracteristica`).
9
+ 5. Abre un Pull Request.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Albert Araya - Dbcube
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
File without changes