@cacheable/net 2.0.6 → 2.0.7
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 +5 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cacheable/net",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"description": "High Performance Network Caching for Node.js with fetch, request, http 1.1, and http 2 support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -27,18 +27,15 @@
|
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"private": false,
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@faker-js/faker": "^10.3.0",
|
|
31
30
|
"@types/http-cache-semantics": "^4.2.0",
|
|
32
|
-
"@types/node": "^25.3.0",
|
|
33
|
-
"rimraf": "^6.1.3",
|
|
34
31
|
"tsup": "^8.5.1",
|
|
35
32
|
"typescript": "^5.9.3"
|
|
36
33
|
},
|
|
37
34
|
"dependencies": {
|
|
38
35
|
"hookified": "^1.15.1",
|
|
39
36
|
"http-cache-semantics": "^4.2.0",
|
|
40
|
-
"undici": "^7.
|
|
41
|
-
"cacheable": "^2.3.
|
|
37
|
+
"undici": "^7.24.5",
|
|
38
|
+
"cacheable": "^2.3.4"
|
|
42
39
|
},
|
|
43
40
|
"keywords": [
|
|
44
41
|
"cacheable",
|
|
@@ -73,10 +70,9 @@
|
|
|
73
70
|
],
|
|
74
71
|
"scripts": {
|
|
75
72
|
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
|
|
76
|
-
"prepublish": "pnpm build",
|
|
77
73
|
"lint": "biome check --write --error-on-warnings",
|
|
78
|
-
"test": "pnpm lint && TEST_URL=http://localhost:
|
|
79
|
-
"test:ci": "biome check --error-on-warnings && TEST_URL=http://localhost:
|
|
74
|
+
"test": "pnpm lint && TEST_URL=http://localhost:3737 vitest run --coverage",
|
|
75
|
+
"test:ci": "biome check --error-on-warnings && TEST_URL=http://localhost:3737 vitest run --coverage",
|
|
80
76
|
"clean": "rimraf ./dist ./coverage ./node_modules"
|
|
81
77
|
}
|
|
82
78
|
}
|