@relking-elements/vue-firebase 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 +118 -0
- package/dist/index.cjs +1096 -0
- package/dist/index.d.cts +605 -0
- package/dist/index.d.mts +605 -0
- package/dist/index.d.ts +605 -0
- package/dist/index.mjs +1060 -0
- package/package.json +85 -0
package/package.json
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@relking-elements/vue-firebase",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Official Firebase bindings for Vue.js",
|
|
5
|
+
"packageManager": "pnpm@10.13.1",
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": ">=20"
|
|
8
|
+
},
|
|
9
|
+
"volta": {
|
|
10
|
+
"node": "20.11.1"
|
|
11
|
+
},
|
|
12
|
+
"type": "module",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"types": {
|
|
16
|
+
"import": "./dist/index.d.mts",
|
|
17
|
+
"require": "./dist/index.d.cts"
|
|
18
|
+
},
|
|
19
|
+
"import": "./dist/index.mjs",
|
|
20
|
+
"require": "./dist/index.cjs"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"main": "./dist/index.cjs",
|
|
24
|
+
"module": "./dist/index.mjs",
|
|
25
|
+
"types": "./dist/index.d.mts",
|
|
26
|
+
"sideEffects": false,
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"LICENSE",
|
|
30
|
+
"README.md"
|
|
31
|
+
],
|
|
32
|
+
"author": {
|
|
33
|
+
"name": "Eduardo San Martin Morote",
|
|
34
|
+
"email": "posva13@gmail.com"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "unbuild",
|
|
38
|
+
"play": "pnpm run -C playground dev",
|
|
39
|
+
"lint": "prettier -c --parser typescript \"{src,__tests__,e2e}/**/*.[jt]s?(x)\"",
|
|
40
|
+
"lint:fix": "pnpm run lint --write",
|
|
41
|
+
"test:types": "tsc --build tsconfig.json",
|
|
42
|
+
"test:unit": "vitest --coverage",
|
|
43
|
+
"firebase:emulators": "firebase emulators:start",
|
|
44
|
+
"test:dev": "vitest --ui",
|
|
45
|
+
"test": "pnpm run lint && pnpm run test:types && pnpm run build && pnpm run test:unit run"
|
|
46
|
+
},
|
|
47
|
+
"keywords": [
|
|
48
|
+
"vue",
|
|
49
|
+
"firebase",
|
|
50
|
+
"vuefire",
|
|
51
|
+
"composition",
|
|
52
|
+
"api"
|
|
53
|
+
],
|
|
54
|
+
"license": "MIT",
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"firebase": "^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0",
|
|
57
|
+
"vue": "^3.2.0"
|
|
58
|
+
},
|
|
59
|
+
"peerDependenciesMeta": {
|
|
60
|
+
"firebase": {
|
|
61
|
+
"optional": true
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@vitest/coverage-v8": "^2.1.3",
|
|
66
|
+
"@vitest/ui": "^2.1.3",
|
|
67
|
+
"@vue/test-utils": "^2.4.6",
|
|
68
|
+
"firebase": "^11.1.0",
|
|
69
|
+
"firebase-tools": "^13.29.1",
|
|
70
|
+
"happy-dom": "^15.7.4",
|
|
71
|
+
"prettier": "^3.3.3",
|
|
72
|
+
"typescript": "~5.5.4",
|
|
73
|
+
"unbuild": "^2.0.0",
|
|
74
|
+
"vitest": "^2.1.3",
|
|
75
|
+
"vue": "^3.5.12"
|
|
76
|
+
},
|
|
77
|
+
"repository": {
|
|
78
|
+
"type": "git",
|
|
79
|
+
"url": "git+https://github.com/vuejs/vuefire.git"
|
|
80
|
+
},
|
|
81
|
+
"bugs": {
|
|
82
|
+
"url": "https://github.com/vuejs/vuefire/issues"
|
|
83
|
+
},
|
|
84
|
+
"homepage": "https://github.com/vuejs/vuefire#readme"
|
|
85
|
+
}
|