react-firebase-ql 0.1.0
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/LICENSE +21 -0
- package/README.md +15 -0
- package/dist/index.d.ts +304 -0
- package/dist/index.js +1366 -0
- package/dist/index.mjs +1359 -0
- package/package.json +48 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "react-firebase-ql",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A React helper library that simplifies using Firebase with side effects and live queries.",
|
|
5
|
+
"main": "dist/index.cjs.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"private": false,
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/breedware/react-firebase-ql.git"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"react",
|
|
18
|
+
"firebase",
|
|
19
|
+
"hooks",
|
|
20
|
+
"library",
|
|
21
|
+
"firebase-ql",
|
|
22
|
+
"firebase sql",
|
|
23
|
+
"react-firebase"
|
|
24
|
+
],
|
|
25
|
+
"author": "Breedware Limited",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"scripts": {
|
|
28
|
+
"clean": "rimraf dist",
|
|
29
|
+
"build": "tsup src/index.ts --dts --format esm,cjs --out-dir dist",
|
|
30
|
+
"prepublishOnly": "npm run build",
|
|
31
|
+
"test": "vitest",
|
|
32
|
+
"lint": "eslint . --ext .ts,.tsx,.js",
|
|
33
|
+
"prepare": "npm run build"
|
|
34
|
+
},
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"firebase": ">=9",
|
|
37
|
+
"react": ">=18"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@testing-library/react": "^16.3.0",
|
|
41
|
+
"@types/react": "^18.3.26",
|
|
42
|
+
"eslint": "^8.0.0",
|
|
43
|
+
"rimraf": "^3.0.2",
|
|
44
|
+
"tsup": "^6.7.0",
|
|
45
|
+
"typescript": "^5.9.3",
|
|
46
|
+
"vitest": "^0.30.1"
|
|
47
|
+
}
|
|
48
|
+
}
|