@push.rocks/smartdb 2.11.2 → 2.11.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/dist_ts/00_commitinfo_data.js +1 -1
- package/package.json +15 -4
- package/readme.md +7 -0
- package/ts/00_commitinfo_data.ts +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@push.rocks/smartdb',
|
|
6
|
-
version: '2.11.
|
|
6
|
+
version: '2.11.3',
|
|
7
7
|
description: 'A MongoDB-compatible embedded database server with wire protocol support, backed by a high-performance Rust engine.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSxxQkFBcUI7SUFDM0IsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHFIQUFxSDtDQUNuSSxDQUFBIn0=
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@push.rocks/smartdb",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A MongoDB-compatible embedded database server with wire protocol support, backed by a high-performance Rust engine.",
|
|
6
6
|
"exports": {
|
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
"author": "Task Venture Capital GmbH",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"devDependencies": {
|
|
15
|
+
"@api.global/typedserver": "^8.4.6",
|
|
16
|
+
"@design.estate/dees-element": "^2.2.4",
|
|
15
17
|
"@git.zone/tsbuild": "^4.4.2",
|
|
16
18
|
"@git.zone/tsbundle": "^2.10.4",
|
|
17
19
|
"@git.zone/tsrun": "^2.0.4",
|
|
@@ -21,9 +23,6 @@
|
|
|
21
23
|
"mongodb": "^7.1.1"
|
|
22
24
|
},
|
|
23
25
|
"dependencies": {
|
|
24
|
-
"@api.global/typedserver": "^8.0.0",
|
|
25
|
-
"@design.estate/dees-element": "^2.0.0",
|
|
26
|
-
"@push.rocks/smartdata": "7.1.5",
|
|
27
26
|
"@push.rocks/smartrust": "^1.3.2",
|
|
28
27
|
"bson": "^7.2.0"
|
|
29
28
|
},
|
|
@@ -60,6 +59,18 @@
|
|
|
60
59
|
"bugs": {
|
|
61
60
|
"url": "https://code.foss.global/push.rocks/smartdb/issues"
|
|
62
61
|
},
|
|
62
|
+
"peerDependencies": {
|
|
63
|
+
"@api.global/typedserver": "^8.0.0",
|
|
64
|
+
"@design.estate/dees-element": "^2.0.0"
|
|
65
|
+
},
|
|
66
|
+
"peerDependenciesMeta": {
|
|
67
|
+
"@api.global/typedserver": {
|
|
68
|
+
"optional": true
|
|
69
|
+
},
|
|
70
|
+
"@design.estate/dees-element": {
|
|
71
|
+
"optional": true
|
|
72
|
+
}
|
|
73
|
+
},
|
|
63
74
|
"scripts": {
|
|
64
75
|
"test:before": "(tsrust)",
|
|
65
76
|
"test": "(tstest test/. --verbose --logfile --timeout 60)",
|
package/readme.md
CHANGED
|
@@ -137,6 +137,13 @@ await server.stop();
|
|
|
137
137
|
|
|
138
138
|
Launch a web-based dashboard to inspect your database in real time:
|
|
139
139
|
|
|
140
|
+
`debugserver` and `debugui` are optional subpath exports. Install their
|
|
141
|
+
peer dependencies only when you use them:
|
|
142
|
+
|
|
143
|
+
```bash
|
|
144
|
+
pnpm add @api.global/typedserver @design.estate/dees-element
|
|
145
|
+
```
|
|
146
|
+
|
|
140
147
|
```typescript
|
|
141
148
|
import { SmartdbServer } from '@push.rocks/smartdb';
|
|
142
149
|
import { SmartdbDebugServer } from '@push.rocks/smartdb/debugserver';
|
package/ts/00_commitinfo_data.ts
CHANGED