@furystack/filesystem-store 7.0.32 → 7.0.34

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 (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +16 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [7.0.34] - 2026-01-26
4
+
5
+ ### 🔧 Chores
6
+
7
+ - Standardized author format, improved keywords, removed obsolete `gitHead`, added `engines` (Node 22+) and `sideEffects: false`
8
+
9
+ ## [7.0.33] - 2026-01-26
10
+
11
+ ### ⬆️ Dependencies
12
+
13
+ - Updated `@furystack/inject` with fix for singleton injector reference being overwritten by child injectors
14
+
3
15
  ## [7.0.32] - 2026-01-22
4
16
 
5
17
  ### ⬆️ Dependencies
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@furystack/filesystem-store",
3
- "version": "7.0.32",
3
+ "version": "7.0.34",
4
4
  "description": "Simple File System store implementation for FuryStack",
5
5
  "type": "module",
6
6
  "scripts": {
7
- "build:es6": "tsc --outDir ./esm"
7
+ "build": "tsc --outDir ./esm"
8
8
  },
9
9
  "exports": {
10
10
  ".": {
11
+ "types": "./esm/index.d.ts",
11
12
  "import": "./esm/index.js"
12
13
  }
13
14
  },
14
15
  "files": [
15
16
  "esm",
16
- "types",
17
17
  "src"
18
18
  ],
19
19
  "repository": {
@@ -22,24 +22,25 @@
22
22
  },
23
23
  "keywords": [
24
24
  "FuryStack",
25
- "Storage",
26
- "File system",
27
- "Embedded",
28
- "Lightweight"
25
+ "storage",
26
+ "file system",
27
+ "embedded",
28
+ "lightweight",
29
+ "JSON"
29
30
  ],
30
31
  "publishConfig": {
31
32
  "access": "public"
32
33
  },
33
- "author": "gallay.lajos@gmail.com",
34
+ "author": "Gallay Lajos <gallay.lajos@gmail.com>",
34
35
  "license": "GPL-2.0",
35
36
  "bugs": {
36
37
  "url": "https://github.com/furystack/furystack/issues"
37
38
  },
38
39
  "homepage": "https://github.com/furystack/furystack",
39
40
  "dependencies": {
40
- "@furystack/core": "^15.0.32",
41
- "@furystack/inject": "^12.0.26",
42
- "@furystack/utils": "^8.1.8",
41
+ "@furystack/core": "^15.0.34",
42
+ "@furystack/inject": "^12.0.28",
43
+ "@furystack/utils": "^8.1.9",
43
44
  "semaphore-async-await": "^1.5.1"
44
45
  },
45
46
  "devDependencies": {
@@ -47,5 +48,8 @@
47
48
  "typescript": "^5.9.3",
48
49
  "vitest": "^4.0.17"
49
50
  },
50
- "gitHead": "1045d854bfd8c475b7035471d130d401417a2321"
51
+ "engines": {
52
+ "node": ">=22.0.0"
53
+ },
54
+ "sideEffects": false
51
55
  }