svelte-firekit 0.0.3 → 0.0.5

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 +5 -0
  2. package/package.json +14 -1
package/README.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  Firekit is a powerful Firebase toolkit for SvelteKit applications, providing a comprehensive set of utilities, stores, and components for Firebase integration.
4
4
 
5
+ <h2>🚧 Under Development 🚧</h2>
6
+
7
+ <p>
8
+ Please note that this library is still under development. Although it's functional and can be used, some features might be incomplete or subject to changes.
9
+ </p>
5
10
  ## Features
6
11
 
7
12
  - 🔥 **Firebase Integration** - Seamless Firebase setup and configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-firekit",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
@@ -11,6 +11,18 @@
11
11
  "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
12
12
  "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
13
13
  },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/code-gio/svelte-firekit.git"
17
+ },
18
+ "description": "A Svelte library for Firebase integration",
19
+ "keywords": [
20
+ "svelte",
21
+ "firebase",
22
+ "library",
23
+ "frontend"
24
+ ],
25
+ "author": "Giovani Rodriguez",
14
26
  "files": [
15
27
  "dist",
16
28
  "!dist/**/*.test.*",
@@ -35,6 +47,7 @@
35
47
  },
36
48
  "devDependencies": {
37
49
  "@sveltejs/adapter-auto": "^3.0.0",
50
+ "@sveltejs/adapter-cloudflare": "^4.7.4",
38
51
  "@sveltejs/kit": "^2.0.0",
39
52
  "@sveltejs/package": "^2.0.0",
40
53
  "@sveltejs/vite-plugin-svelte": "^4.0.0",