@wxn0brp/db 0.30.0 → 0.40.0
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 -1
- package/dist/graph.d.ts +2 -2
- package/dist/version.js +1 -1
- package/package.json +12 -7
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# <img src="
|
|
1
|
+
# <img src="https://raw.githubusercontent.com/wxn0brP/ValtheraDB/main/logo.svg" alt="ValtheraDB Logo" width="36" height="36"> ValtheraDB (@wxn0brp/db)
|
|
2
2
|
|
|
3
3
|
A lightweight file-based database management system that supports CRUD operations, custom queries, and graph structures.
|
|
4
4
|
|
package/dist/graph.d.ts
CHANGED
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = "0.
|
|
1
|
+
export const version = "0.40.0";
|
package/package.json
CHANGED
|
@@ -1,20 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wxn0brp/db",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.40.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"author": "wxn0brP",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"type": "module",
|
|
9
|
+
"homepage": "https://github.com/wxn0brP/ValtheraDB",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/wxn0brP/ValtheraDB.git"
|
|
13
|
+
},
|
|
9
14
|
"dependencies": {
|
|
10
|
-
"@wxn0brp/db-client": ">=0.
|
|
11
|
-
"@wxn0brp/db-core": ">=0.
|
|
12
|
-
"@wxn0brp/db-storage-dir": ">=0.1.
|
|
15
|
+
"@wxn0brp/db-client": ">=0.2.0",
|
|
16
|
+
"@wxn0brp/db-core": ">=0.2.0",
|
|
17
|
+
"@wxn0brp/db-storage-dir": ">=0.1.1"
|
|
13
18
|
},
|
|
14
19
|
"devDependencies": {
|
|
15
|
-
"@types/node": "
|
|
16
|
-
"tsc-alias": "
|
|
17
|
-
"typescript": "
|
|
20
|
+
"@types/node": "*",
|
|
21
|
+
"tsc-alias": "*",
|
|
22
|
+
"typescript": "*"
|
|
18
23
|
},
|
|
19
24
|
"files": [
|
|
20
25
|
"dist"
|