@wxn0brp/db 0.30.0 → 0.30.1

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 CHANGED
@@ -1,4 +1,4 @@
1
- # <img src="./logo.svg" alt="ValtheraDB Logo" width="36" height="36"> ValtheraDB (@wxn0brp/db)
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
@@ -11,8 +11,8 @@ declare class Graph {
11
11
  * Adds an edge between two nodes.
12
12
  */
13
13
  add(collection: string, nodeA: string, nodeB: string): Promise<{
14
- a: unknown;
15
- b: unknown;
14
+ a: string;
15
+ b: string;
16
16
  }>;
17
17
  /**
18
18
  * Removes an edge between two nodes.
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const version = "0.30.0";
1
+ export const version = "0.30.1";
package/package.json CHANGED
@@ -1,20 +1,25 @@
1
1
  {
2
2
  "name": "@wxn0brp/db",
3
- "version": "0.30.0",
3
+ "version": "0.30.1",
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.1.0",
11
- "@wxn0brp/db-core": ">=0.1.2",
15
+ "@wxn0brp/db-client": ">=0.1.2",
16
+ "@wxn0brp/db-core": ">=0.1.5",
12
17
  "@wxn0brp/db-storage-dir": ">=0.1.0"
13
18
  },
14
19
  "devDependencies": {
15
- "@types/node": "^24.1.0",
16
- "tsc-alias": "^1.8.10",
17
- "typescript": "^5.7.3"
20
+ "@types/node": "^24.3.0",
21
+ "tsc-alias": "^1.8.16",
22
+ "typescript": "^5.9.2"
18
23
  },
19
24
  "files": [
20
25
  "dist"