@marckrieger/payload 3.81.2 → 3.81.4
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 +25 -66
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marckrieger/payload",
|
|
3
|
-
"version": "3.81.
|
|
3
|
+
"version": "3.81.4",
|
|
4
4
|
"description": "Node, React, Headless CMS and Application Framework built on Next.js",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"admin panel",
|
|
@@ -41,42 +41,42 @@
|
|
|
41
41
|
"type": "module",
|
|
42
42
|
"exports": {
|
|
43
43
|
".": {
|
|
44
|
-
"import": "./
|
|
45
|
-
"types": "./
|
|
46
|
-
"default": "./
|
|
44
|
+
"import": "./dist/index.js",
|
|
45
|
+
"types": "./dist/index.d.ts",
|
|
46
|
+
"default": "./dist/index.js"
|
|
47
47
|
},
|
|
48
48
|
"./internal": {
|
|
49
|
-
"import": "./
|
|
50
|
-
"types": "./
|
|
51
|
-
"default": "./
|
|
52
|
-
},
|
|
53
|
-
"./shared": {
|
|
54
|
-
"import": "./src/exports/shared.ts",
|
|
55
|
-
"types": "./src/exports/shared.ts",
|
|
56
|
-
"default": "./src/exports/shared.ts"
|
|
49
|
+
"import": "./dist/exports/internal.js",
|
|
50
|
+
"types": "./dist/exports/internal.d.ts",
|
|
51
|
+
"default": "./dist/exports/internal.js"
|
|
57
52
|
},
|
|
58
53
|
"./node": {
|
|
59
|
-
"import": "./
|
|
60
|
-
"types": "./
|
|
61
|
-
"default": "./
|
|
54
|
+
"import": "./dist/exports/node.js",
|
|
55
|
+
"types": "./dist/exports/node.d.ts",
|
|
56
|
+
"default": "./dist/exports/node.js"
|
|
57
|
+
},
|
|
58
|
+
"./shared": {
|
|
59
|
+
"import": "./dist/exports/shared.js",
|
|
60
|
+
"types": "./dist/exports/shared.d.ts",
|
|
61
|
+
"default": "./dist/exports/shared.js"
|
|
62
62
|
},
|
|
63
63
|
"./i18n/*": {
|
|
64
|
-
"import": "./
|
|
65
|
-
"types": "./
|
|
66
|
-
"default": "./
|
|
64
|
+
"import": "./dist/exports/i18n/*.js",
|
|
65
|
+
"types": "./dist/exports/i18n/*.d.ts",
|
|
66
|
+
"default": "./dist/exports/i18n/*.js"
|
|
67
67
|
},
|
|
68
68
|
"./migrations": {
|
|
69
|
-
"import": "./
|
|
70
|
-
"types": "./
|
|
71
|
-
"default": "./
|
|
69
|
+
"import": "./dist/exports/migrations.js",
|
|
70
|
+
"types": "./dist/exports/migrations.d.ts",
|
|
71
|
+
"default": "./dist/exports/migrations.js"
|
|
72
72
|
},
|
|
73
73
|
"./__testing__/predefinedMigration": {
|
|
74
|
-
"import": "./
|
|
75
|
-
"default": "./
|
|
74
|
+
"import": "./dist/__testing__/predefinedMigration.js",
|
|
75
|
+
"default": "./dist/__testing__/predefinedMigration.js"
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
|
-
"main": "./
|
|
79
|
-
"types": "./
|
|
78
|
+
"main": "./dist/index.js",
|
|
79
|
+
"types": "./dist/index.d.ts",
|
|
80
80
|
"bin": {
|
|
81
81
|
"payload": "bin.js"
|
|
82
82
|
},
|
|
@@ -156,46 +156,5 @@
|
|
|
156
156
|
},
|
|
157
157
|
"engines": {
|
|
158
158
|
"node": "^18.20.2 || >=20.9.0"
|
|
159
|
-
},
|
|
160
|
-
"publishConfig": {
|
|
161
|
-
"exports": {
|
|
162
|
-
".": {
|
|
163
|
-
"import": "./dist/index.js",
|
|
164
|
-
"types": "./dist/index.d.ts",
|
|
165
|
-
"default": "./dist/index.js"
|
|
166
|
-
},
|
|
167
|
-
"./internal": {
|
|
168
|
-
"import": "./dist/exports/internal.js",
|
|
169
|
-
"types": "./dist/exports/internal.d.ts",
|
|
170
|
-
"default": "./dist/exports/internal.js"
|
|
171
|
-
},
|
|
172
|
-
"./node": {
|
|
173
|
-
"import": "./dist/exports/node.js",
|
|
174
|
-
"types": "./dist/exports/node.d.ts",
|
|
175
|
-
"default": "./dist/exports/node.js"
|
|
176
|
-
},
|
|
177
|
-
"./shared": {
|
|
178
|
-
"import": "./dist/exports/shared.js",
|
|
179
|
-
"types": "./dist/exports/shared.d.ts",
|
|
180
|
-
"default": "./dist/exports/shared.js"
|
|
181
|
-
},
|
|
182
|
-
"./i18n/*": {
|
|
183
|
-
"import": "./dist/exports/i18n/*.js",
|
|
184
|
-
"types": "./dist/exports/i18n/*.d.ts",
|
|
185
|
-
"default": "./dist/exports/i18n/*.js"
|
|
186
|
-
},
|
|
187
|
-
"./migrations": {
|
|
188
|
-
"import": "./dist/exports/migrations.js",
|
|
189
|
-
"types": "./dist/exports/migrations.d.ts",
|
|
190
|
-
"default": "./dist/exports/migrations.js"
|
|
191
|
-
},
|
|
192
|
-
"./__testing__/predefinedMigration": {
|
|
193
|
-
"import": "./dist/__testing__/predefinedMigration.js",
|
|
194
|
-
"default": "./dist/__testing__/predefinedMigration.js"
|
|
195
|
-
}
|
|
196
|
-
},
|
|
197
|
-
"main": "./dist/index.js",
|
|
198
|
-
"registry": "https://registry.npmjs.org/",
|
|
199
|
-
"types": "./dist/index.d.ts"
|
|
200
159
|
}
|
|
201
160
|
}
|