-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "firestore-export-import",
"version": "1.5.0",
"description": "NPM package for backup and restore Firebase Firestore",
"type": "module",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"readme.md",
"dist/*.*.*",
"dist/*.*"
],
"scripts": {
"build": "tsc --skipLibCheck --noCheck && pnpm run minify",
"build:vite": "vite build",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"minify": "jsmin -o dist/index.js dist/index.js && jsmin -o dist/import.js dist/import.js && jsmin -o dist/export.js dist/export.js && jsmin -o dist/helper.js dist/helper.js"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@vitest/coverage-v8": "^1.2.1",
"jsmin": "^1.0.1",
"request-promise": "^4.2.6",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.1",
"vitest": "^1.2.1"
},
"dependencies": {
"firebase-admin": "^13.0.2",
"google-gax": "^4.1.1",
"uuid": "^9.0.1"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8"
}
}