-
-
Notifications
You must be signed in to change notification settings - Fork 342
/
Copy pathpackage.json
128 lines (128 loc) · 3.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "vuefire",
"version": "3.1.5",
"description": "Official Firebase bindings for Vue.js",
"packageManager": "pnpm@8.6.6",
"engines": {
"node": "18"
},
"volta": {
"node": "18.16.1"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"./server.d.ts",
"LICENSE",
"README.md"
],
"author": {
"name": "Eduardo San Martin Morote",
"email": "posva13@gmail.com"
},
"funding": "https://github.com/sponsors/posva",
"scripts": {
"docs": "vitepress dev docs --port 3000",
"docs:build": "pnpm run docs:api:build && vitepress build docs",
"docs:api:build": "node ./scripts/run-typedoc.cjs",
"build": "unbuild",
"release": "node scripts/release.mjs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path src -l vuefire -r 1",
"play": "pnpm run -C playground dev",
"lint": "prettier -c --parser typescript \"{src,__tests__,e2e}/**/*.[jt]s?(x)\"",
"lint:fix": "pnpm run lint --write",
"test:types": "tsc --build tsconfig.json",
"test:unit": "vitest --coverage",
"firebase:emulators": "firebase emulators:start",
"test:dev": "vitest",
"test": "pnpm run lint && pnpm run test:types && pnpm run build && pnpm run -C packages/nuxt build && pnpm run test:unit run"
},
"keywords": [
"vue",
"firebase",
"vuefire",
"vuexfire",
"vuex",
"composition",
"api"
],
"license": "MIT",
"dependencies": {
"vue-demi": "latest"
},
"peerDependencies": {
"firebase": "^9.0.0 || ^10.0.0",
"vue": "^2.7.0 || ^3.2.0"
},
"peerDependenciesMeta": {
"firebase": {
"optional": true
},
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@vitest/coverage-v8": "^0.33.0",
"@vue/runtime-core": "^3.3.4",
"@vue/test-utils": "^2.4.0",
"chalk": "^5.3.0",
"conventional-changelog-cli": "^2.0.34",
"enquirer": "^2.3.6",
"execa": "^7.1.1",
"firebase": "^10.0.0",
"firebase-admin": "^11.9.0",
"focus-visible": "^5.2.0",
"globby": "^13.2.2",
"happy-dom": "^10.1.1",
"lint-staged": "^13.2.3",
"minimist": "^1.2.8",
"p-series": "^3.0.0",
"prettier": "^2.8.8",
"semver": "^7.5.4",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "~5.1.6",
"unbuild": "^1.2.1",
"vitepress": "1.0.0-beta.5",
"vitest": "^0.33.0",
"vue": "^3.3.4",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.mjs"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vuefire.git"
},
"bugs": {
"url": "https://github.com/vuejs/vuefire/issues"
},
"homepage": "https://github.com/vuejs/vuefire#readme"
}