@naturalcycles/firestore-lib 2.0.1 → 2.0.2
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/package.json +17 -18
package/package.json
CHANGED
|
@@ -1,28 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naturalcycles/firestore-lib",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"scripts": {
|
|
5
|
-
"prepare": "husky",
|
|
6
|
-
"build": "dev-lib build",
|
|
7
|
-
"test": "dev-lib test",
|
|
8
|
-
"lint": "dev-lib lint",
|
|
9
|
-
"bt": "dev-lib bt",
|
|
10
|
-
"lbt": "dev-lib lbt"
|
|
11
|
-
},
|
|
12
4
|
"dependencies": {
|
|
13
5
|
"@google-cloud/firestore": "^7",
|
|
14
6
|
"@naturalcycles/db-lib": "^10",
|
|
15
7
|
"@naturalcycles/js-lib": "^15",
|
|
16
|
-
"@naturalcycles/nodejs-lib": "^14"
|
|
8
|
+
"@naturalcycles/nodejs-lib": "^14",
|
|
9
|
+
"tslib": "^2"
|
|
17
10
|
},
|
|
18
11
|
"devDependencies": {
|
|
19
|
-
"@naturalcycles/dev-lib": "
|
|
12
|
+
"@naturalcycles/dev-lib": "*",
|
|
20
13
|
"@types/node": "^22",
|
|
21
|
-
"@vitest/coverage-v8": "^3",
|
|
22
14
|
"dotenv": "^16",
|
|
23
|
-
"firebase-admin": "^13"
|
|
24
|
-
"tsx": "^4",
|
|
25
|
-
"vitest": "^3"
|
|
15
|
+
"firebase-admin": "^13"
|
|
26
16
|
},
|
|
27
17
|
"files": [
|
|
28
18
|
"dist",
|
|
@@ -39,13 +29,22 @@
|
|
|
39
29
|
},
|
|
40
30
|
"repository": {
|
|
41
31
|
"type": "git",
|
|
42
|
-
"url": "
|
|
32
|
+
"url": "git@github.com:NaturalCycles/js-libs.git",
|
|
33
|
+
"directory": "packages/firestore-lib"
|
|
43
34
|
},
|
|
44
35
|
"engines": {
|
|
45
36
|
"node": ">=22.12.0"
|
|
46
37
|
},
|
|
47
|
-
"version": "2.0.
|
|
38
|
+
"version": "2.0.2",
|
|
48
39
|
"description": "Firestore implementation of CommonDB interface",
|
|
49
40
|
"author": "Natural Cycles Team",
|
|
50
|
-
"license": "MIT"
|
|
51
|
-
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "dev-lib build",
|
|
44
|
+
"test": "dev-lib test",
|
|
45
|
+
"lint": "dev-lib lint",
|
|
46
|
+
"bt": "dev-lib bt",
|
|
47
|
+
"lbt": "dev-lib lbt",
|
|
48
|
+
"check": "dev-lib lbt"
|
|
49
|
+
}
|
|
50
|
+
}
|