payload-smart-cache 1.1.9 → 1.1.10
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 +14 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "payload-smart-cache",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.10",
|
|
4
4
|
"description": "Payload Plugin for Cached Data",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"payload",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"graph-data-structure": "^4.5.0",
|
|
45
45
|
"lodash-es": "^4.17.21",
|
|
46
46
|
"zod": "4.3.5",
|
|
47
|
-
"@davincicoding/payload-plugin-kit": "0.0.
|
|
47
|
+
"@davincicoding/payload-plugin-kit": "0.0.4"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@payloadcms/ui": "3.72.0",
|
|
@@ -58,13 +58,13 @@
|
|
|
58
58
|
"react-dom": "19.2.1",
|
|
59
59
|
"typescript": "5.7.3",
|
|
60
60
|
"vite": "7.0.6",
|
|
61
|
-
"vitest": "
|
|
61
|
+
"vitest": "3.2.3"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
|
-
"@payloadcms/next": "
|
|
64
|
+
"@payloadcms/next": "3.72.0",
|
|
65
65
|
"@payloadcms/ui": ">=3.72.0",
|
|
66
|
-
"next": "
|
|
67
|
-
"payload": "
|
|
66
|
+
"next": "15.5.9",
|
|
67
|
+
"payload": "3.72.0"
|
|
68
68
|
},
|
|
69
69
|
"engines": {
|
|
70
70
|
"node": "^18.20.2 || >=20.9.0",
|
|
@@ -74,15 +74,17 @@
|
|
|
74
74
|
"access": "public"
|
|
75
75
|
},
|
|
76
76
|
"scripts": {
|
|
77
|
-
"prebuild": "pnpm
|
|
77
|
+
"prebuild": "pnpm check:types",
|
|
78
78
|
"build": "plugin-build",
|
|
79
|
-
"
|
|
80
|
-
"dev": "
|
|
79
|
+
"check:types": "tsc --noEmit",
|
|
80
|
+
"dev": "next dev dev",
|
|
81
|
+
"dev:build": "plugin-build --watch",
|
|
81
82
|
"generate:types": "generate-types",
|
|
82
83
|
"lint": "biome check .",
|
|
83
84
|
"lint:fix": "biome check --write .",
|
|
84
|
-
"test": "vitest run
|
|
85
|
-
"test:
|
|
86
|
-
"
|
|
85
|
+
"test": "vitest run",
|
|
86
|
+
"test:e2e": "playwright test --config dev/playwright.config.ts",
|
|
87
|
+
"test:int": "vitest run --config dev/vitest.config.mts",
|
|
88
|
+
"test:watch": "vitest"
|
|
87
89
|
}
|
|
88
90
|
}
|