@wxn0brp/db-lock 0.0.2 → 0.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.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +7 -1
  3. package/package.json +10 -5
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 wxn0brP
3
+ Copyright (c) 2026 wxn0brP
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -9,7 +9,13 @@ This package provides a locking mechanism that ensures thread-safe database oper
9
9
  ## Installation
10
10
 
11
11
  ```bash
12
- yarn add github:wxn0brP/ValtheraDB-lock#dist
12
+ npm i @wxn0brp/db-lock @wxn0brp/db-core @wxn0brp/db-storage-dir
13
+ ```
14
+
15
+ or
16
+
17
+ ```bash
18
+ npm i @wxn0brp/db-lock @wxn0brp/db
13
19
  ```
14
20
 
15
21
  ## Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wxn0brp/db-lock",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "description": "Provides file-based locking for thread-safe ValtheraDB operations.",
@@ -12,16 +12,21 @@
12
12
  "author": "wxn0brP",
13
13
  "license": "MIT",
14
14
  "type": "module",
15
+ "keywords": [
16
+ "valthera",
17
+ "valtheradb",
18
+ "vdb-adapter"
19
+ ],
15
20
  "devDependencies": {
16
21
  "@types/bun": "*",
17
- "@wxn0brp/db-core": "^0.3.0",
18
- "@wxn0brp/db-storage-dir": "^0.1.4",
22
+ "@wxn0brp/db-core": "^0.4.0",
23
+ "@wxn0brp/db-storage-dir": "^0.1.6",
19
24
  "tsc-alias": "*",
20
25
  "typescript": "*"
21
26
  },
22
27
  "peerDependencies": {
23
- "@wxn0brp/db-core": ">=0.3.0",
24
- "@wxn0brp/db-storage-dir": ">=0.1.4"
28
+ "@wxn0brp/db-core": ">=0.4.0",
29
+ "@wxn0brp/db-storage-dir": ">=0.1.6"
25
30
  },
26
31
  "files": [
27
32
  "dist"