-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 907 Bytes
/
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
{
"name": "firedata-connect",
"version": "1.0.8",
"description": "Simple firebase import and export",
"type": "module",
"main": "./dist/bin/index.js",
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"bin": {
"firedata-import": "./dist/bin/import.js",
"firedata-export": "./dist/bin/export.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"firedata-export": "node ./dist/bin/export.js",
"firedata-import": "node ./dist/bin/import.js"
},
"repository": {
"type": "git",
"url": "(https://github.com/pedrobruneli/firedata-connect)"
},
"keywords": [
"firestore",
"firebase",
"import",
"export"
],
"author": "Pedro Bruneli",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"chalk": "^5.3.0",
"firebase-admin": "^11.10.1"
}
}