file-entry-cache 11.1.1 → 11.1.2
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/package.json +17 -11
package/package.json
CHANGED
|
@@ -1,15 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "file-entry-cache",
|
|
3
|
-
"version": "11.1.
|
|
3
|
+
"version": "11.1.2",
|
|
4
4
|
"description": "A lightweight cache for file metadata, ideal for processes that work on a specific set of files and only need to reprocess files that have changed since the last run",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "./dist/index.
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
7
|
"module": "./dist/index.js",
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
|
-
"
|
|
12
|
-
|
|
11
|
+
"import": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"require": {
|
|
16
|
+
"types": "./dist/index.d.cts",
|
|
17
|
+
"default": "./dist/index.cjs"
|
|
18
|
+
}
|
|
13
19
|
}
|
|
14
20
|
},
|
|
15
21
|
"repository": {
|
|
@@ -29,17 +35,17 @@
|
|
|
29
35
|
"cache"
|
|
30
36
|
],
|
|
31
37
|
"devDependencies": {
|
|
32
|
-
"@biomejs/biome": "^2.3.
|
|
33
|
-
"@types/node": "^
|
|
34
|
-
"@vitest/coverage-v8": "^4.0.
|
|
35
|
-
"pino": "^10.1.
|
|
36
|
-
"rimraf": "^6.1.
|
|
38
|
+
"@biomejs/biome": "^2.3.11",
|
|
39
|
+
"@types/node": "^25.0.8",
|
|
40
|
+
"@vitest/coverage-v8": "^4.0.17",
|
|
41
|
+
"pino": "^10.1.1",
|
|
42
|
+
"rimraf": "^6.1.2",
|
|
37
43
|
"tsup": "^8.5.1",
|
|
38
44
|
"typescript": "^5.9.3",
|
|
39
|
-
"vitest": "^4.0.
|
|
45
|
+
"vitest": "^4.0.17"
|
|
40
46
|
},
|
|
41
47
|
"dependencies": {
|
|
42
|
-
"flat-cache": "^6.1.
|
|
48
|
+
"flat-cache": "^6.1.20"
|
|
43
49
|
},
|
|
44
50
|
"files": [
|
|
45
51
|
"dist",
|