@djangocfg/nextjs 2.1.16 → 2.1.18
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/dist/config/index.mjs +35 -35
- package/dist/config/index.mjs.map +1 -1
- package/dist/index.mjs +35 -35
- package/dist/index.mjs.map +1 -1
- package/dist/scripts/index.d.mts +45 -0
- package/dist/scripts/index.mjs +40381 -0
- package/dist/scripts/index.mjs.map +1 -0
- package/package.json +38 -38
package/dist/index.mjs
CHANGED
|
@@ -14,7 +14,7 @@ var require_package = __commonJS({
|
|
|
14
14
|
"package.json"(exports, module) {
|
|
15
15
|
module.exports = {
|
|
16
16
|
name: "@djangocfg/nextjs",
|
|
17
|
-
version: "2.1.
|
|
17
|
+
version: "2.1.18",
|
|
18
18
|
description: "Next.js server utilities: sitemap, health, OG images, contact forms, navigation, config",
|
|
19
19
|
keywords: [
|
|
20
20
|
"nextjs",
|
|
@@ -40,58 +40,58 @@ var require_package = __commonJS({
|
|
|
40
40
|
url: "https://github.com/markolofsen/django-cfg/issues"
|
|
41
41
|
},
|
|
42
42
|
license: "MIT",
|
|
43
|
-
main: "./
|
|
44
|
-
types: "./
|
|
43
|
+
main: "./dist/index.mjs",
|
|
44
|
+
types: "./dist/index.d.mts",
|
|
45
45
|
exports: {
|
|
46
46
|
".": {
|
|
47
|
-
types: "./
|
|
48
|
-
import: "./
|
|
49
|
-
default: "./
|
|
47
|
+
types: "./dist/index.d.mts",
|
|
48
|
+
import: "./dist/index.mjs",
|
|
49
|
+
default: "./dist/index.mjs"
|
|
50
50
|
},
|
|
51
51
|
"./sitemap": {
|
|
52
|
-
types: "./
|
|
53
|
-
import: "./
|
|
54
|
-
default: "./
|
|
52
|
+
types: "./dist/sitemap/index.d.mts",
|
|
53
|
+
import: "./dist/sitemap/index.mjs",
|
|
54
|
+
default: "./dist/sitemap/index.mjs"
|
|
55
55
|
},
|
|
56
56
|
"./health": {
|
|
57
|
-
types: "./
|
|
58
|
-
import: "./
|
|
59
|
-
default: "./
|
|
57
|
+
types: "./dist/health/index.d.mts",
|
|
58
|
+
import: "./dist/health/index.mjs",
|
|
59
|
+
default: "./dist/health/index.mjs"
|
|
60
60
|
},
|
|
61
61
|
"./og-image": {
|
|
62
|
-
types: "./
|
|
63
|
-
import: "./
|
|
64
|
-
default: "./
|
|
62
|
+
types: "./dist/og-image/index.d.mts",
|
|
63
|
+
import: "./dist/og-image/index.mjs",
|
|
64
|
+
default: "./dist/og-image/index.mjs"
|
|
65
65
|
},
|
|
66
66
|
"./og-image/utils": {
|
|
67
|
-
types: "./
|
|
68
|
-
import: "./
|
|
69
|
-
default: "./
|
|
67
|
+
types: "./dist/og-image/utils/index.d.mts",
|
|
68
|
+
import: "./dist/og-image/utils/index.mjs",
|
|
69
|
+
default: "./dist/og-image/utils/index.mjs"
|
|
70
70
|
},
|
|
71
71
|
"./og-image/components": {
|
|
72
|
-
types: "./
|
|
73
|
-
import: "./
|
|
74
|
-
default: "./
|
|
72
|
+
types: "./dist/og-image/components/index.d.mts",
|
|
73
|
+
import: "./dist/og-image/components/index.mjs",
|
|
74
|
+
default: "./dist/og-image/components/index.mjs"
|
|
75
75
|
},
|
|
76
76
|
"./navigation": {
|
|
77
|
-
types: "./
|
|
78
|
-
import: "./
|
|
79
|
-
default: "./
|
|
77
|
+
types: "./dist/navigation/index.d.mts",
|
|
78
|
+
import: "./dist/navigation/index.mjs",
|
|
79
|
+
default: "./dist/navigation/index.mjs"
|
|
80
80
|
},
|
|
81
81
|
"./config": {
|
|
82
|
-
types: "./
|
|
83
|
-
import: "./
|
|
84
|
-
default: "./
|
|
85
|
-
},
|
|
86
|
-
"./scripts": {
|
|
87
|
-
types: "./src/scripts/index.ts",
|
|
88
|
-
import: "./src/scripts/index.ts",
|
|
89
|
-
default: "./src/scripts/index.ts"
|
|
82
|
+
types: "./dist/config/index.d.mts",
|
|
83
|
+
import: "./dist/config/index.mjs",
|
|
84
|
+
default: "./dist/config/index.mjs"
|
|
90
85
|
},
|
|
91
86
|
"./ai": {
|
|
92
|
-
types: "./
|
|
93
|
-
import: "./
|
|
94
|
-
default: "./
|
|
87
|
+
types: "./dist/ai/index.d.mts",
|
|
88
|
+
import: "./dist/ai/index.mjs",
|
|
89
|
+
default: "./dist/ai/index.mjs"
|
|
90
|
+
},
|
|
91
|
+
"./scripts": {
|
|
92
|
+
types: "./dist/scripts/index.d.mts",
|
|
93
|
+
import: "./dist/scripts/index.mjs",
|
|
94
|
+
default: "./dist/scripts/index.mjs"
|
|
95
95
|
}
|
|
96
96
|
},
|
|
97
97
|
files: [
|