@tomsd/mongodbclient 4.0.2 → 4.0.3
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/README.md +1 -3
- package/package.json +11 -9
package/README.md
CHANGED
|
@@ -5,13 +5,11 @@ See [mongodbclient.netlify.app](https://mongodbclient.netlify.app/) for details.
|
|
|
5
5
|
|
|
6
6
|

|
|
7
7
|

|
|
8
|
-

|
|
9
|
-

|
|
10
8
|
|
|
11
9
|

|
|
12
10
|

|
|
13
11
|

|
|
14
|
-

|
|
15
13
|

|
|
16
14
|

|
|
17
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tomsd/mongodbclient",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.3",
|
|
4
4
|
"description": "It's a handy mongodb client for easy-use.",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -16,9 +16,11 @@
|
|
|
16
16
|
"build": "tsup",
|
|
17
17
|
"lint": "biome check",
|
|
18
18
|
"prepare": "husky",
|
|
19
|
+
"start-db": "docker run --name mongodb-mongodbclient --rm -d -p 27017:27017 -e MONGO_INITDB_ROOT_USERNAME=user -e MONGO_INITDB_ROOT_PASSWORD=password mongodb/mongodb-community-server:6.0.3-ubuntu2204",
|
|
20
|
+
"stop-db": "docker container stop mongodb-mongodbclient",
|
|
19
21
|
"serve:doc": "mdbook --serve --directory docs",
|
|
20
|
-
"test
|
|
21
|
-
"test": "vitest"
|
|
22
|
+
"test": "vitest --project node",
|
|
23
|
+
"test:local": "vitest --project local"
|
|
22
24
|
},
|
|
23
25
|
"lint-staged": {
|
|
24
26
|
"docs/**/*.html": [
|
|
@@ -41,19 +43,19 @@
|
|
|
41
43
|
"url": "https://github.com/tomsdoo/mongodbclient"
|
|
42
44
|
},
|
|
43
45
|
"dependencies": {
|
|
44
|
-
"mongodb": "6.
|
|
46
|
+
"mongodb": "6.12.0",
|
|
45
47
|
"uuid": "11.0.3"
|
|
46
48
|
},
|
|
47
49
|
"devDependencies": {
|
|
48
50
|
"@biomejs/biome": "1.9.4",
|
|
49
|
-
"@tomsd/md-book": "1.3.
|
|
50
|
-
"@types/node": "22.
|
|
51
|
+
"@tomsd/md-book": "1.3.4",
|
|
52
|
+
"@types/node": "22.10.2",
|
|
51
53
|
"@types/uuid": "10.0.0",
|
|
52
|
-
"dotenv": "16.4.
|
|
54
|
+
"dotenv": "16.4.7",
|
|
53
55
|
"husky": "9.1.7",
|
|
54
|
-
"lint-staged": "15.
|
|
56
|
+
"lint-staged": "15.3.0",
|
|
55
57
|
"tsup": "8.3.5",
|
|
56
58
|
"typescript": "5.7.2",
|
|
57
|
-
"vitest": "2.1.
|
|
59
|
+
"vitest": "2.1.8"
|
|
58
60
|
}
|
|
59
61
|
}
|