@file-cache/core
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "@file-cache/core", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A cache for file metadata or file content.", | ||
@@ -23,7 +23,6 @@ "keywords": [ | ||
"inputs": { | ||
"node": "./src/index.ts" | ||
"index": "./src/index.ts" | ||
}, | ||
"platform": "node", | ||
"format": "mjs", | ||
"support": "experimental" | ||
"format": "mjs" | ||
} | ||
@@ -42,3 +41,3 @@ ], | ||
"types": "./dts/index.d.ts", | ||
"main": "./cjs/index.cjs", | ||
"main": "./mjs/index.mjs", | ||
"dependencies": { | ||
@@ -62,3 +61,4 @@ "pkg-dir": "^6.0.1" | ||
"node": { | ||
"import": "./mjs/*.mjs" | ||
"import": "./mjs/*.mjs", | ||
"require": "./cjs/*.cjs" | ||
} | ||
@@ -69,3 +69,4 @@ }, | ||
"node": { | ||
"import": "./mjs/index.mjs" | ||
"import": "./mjs/index.mjs", | ||
"require": "./cjs/index.cjs" | ||
} | ||
@@ -72,0 +73,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
41049