jamdesk 1.1.27 → 1.1.29
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/README.md +3 -1
- package/dist/lib/deps.js +4 -4
- package/dist/lib/deps.js.map +1 -1
- package/package.json +1 -1
- package/vendored/app/api/chat/[project]/route.ts +173 -135
- package/vendored/components/chat/ChatEmptyState.tsx +13 -1
- package/vendored/components/chat/ChatPanel.tsx +43 -9
- package/vendored/components/search/SearchModal.tsx +1 -1
- package/vendored/lib/chat-prompt.ts +95 -28
- package/vendored/lib/chat-tools.ts +111 -0
- package/vendored/lib/crisp-bridge.ts +91 -0
- package/vendored/lib/embedding-chunker.ts +85 -11
- package/vendored/lib/query-rewriter.ts +91 -0
- package/vendored/lib/r2-content.ts +5 -1
- package/vendored/lib/vector-store.ts +5 -3
- package/vendored/workspace-package-lock.json +144 -144
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"@fortawesome/free-solid-svg-icons": "^7.1.0",
|
|
15
15
|
"@fortawesome/react-fontawesome": "^3.1.1",
|
|
16
16
|
"@mdx-js/mdx": "^3.1.0",
|
|
17
|
-
"@next/mdx": "16.2.
|
|
18
|
-
"@next/third-parties": "16.2.
|
|
17
|
+
"@next/mdx": "^16.2.4",
|
|
18
|
+
"@next/third-parties": "^16.2.4",
|
|
19
19
|
"@orama/orama": "^3.1.18",
|
|
20
20
|
"@orama/plugin-data-persistence": "^3.1.18",
|
|
21
21
|
"@shikijs/rehype": "^4.0.1",
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
"katex": "^0.16.45",
|
|
39
39
|
"lucide-react": "^0.562.0",
|
|
40
40
|
"mermaid": "^11.14.0",
|
|
41
|
-
"next": "16.2.
|
|
41
|
+
"next": "^16.2.4",
|
|
42
42
|
"next-mdx-remote": "^6.0.0",
|
|
43
43
|
"next-themes": "^0.4.6",
|
|
44
44
|
"openapi-types": "^12.1.3",
|
|
45
|
-
"postcss": "^8.5.
|
|
45
|
+
"postcss": "^8.5.10",
|
|
46
46
|
"react": "^19.2.4",
|
|
47
47
|
"react-dom": "^19.2.4",
|
|
48
48
|
"react-markdown": "^10.1.0",
|
|
@@ -208,9 +208,9 @@
|
|
|
208
208
|
"license": "Apache-2.0"
|
|
209
209
|
},
|
|
210
210
|
"node_modules/@emnapi/runtime": {
|
|
211
|
-
"version": "1.
|
|
212
|
-
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.
|
|
213
|
-
"integrity": "sha512-
|
|
211
|
+
"version": "1.10.0",
|
|
212
|
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
|
|
213
|
+
"integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
|
|
214
214
|
"license": "MIT",
|
|
215
215
|
"optional": true,
|
|
216
216
|
"dependencies": {
|
|
@@ -275,9 +275,9 @@
|
|
|
275
275
|
}
|
|
276
276
|
},
|
|
277
277
|
"node_modules/@fortawesome/react-fontawesome": {
|
|
278
|
-
"version": "3.3.
|
|
279
|
-
"resolved": "https://registry.npmjs.org/@fortawesome/react-fontawesome/-/react-fontawesome-3.3.
|
|
280
|
-
"integrity": "sha512-
|
|
278
|
+
"version": "3.3.1",
|
|
279
|
+
"resolved": "https://registry.npmjs.org/@fortawesome/react-fontawesome/-/react-fontawesome-3.3.1.tgz",
|
|
280
|
+
"integrity": "sha512-wGnAPhfzivDwBWYmEG8MSrEXPruoiMMo48NnsRkj1NZkoaawgOijPNAiSHKMYEoCsqTBSgLTzL6EqTTWGaUR4w==",
|
|
281
281
|
"license": "MIT",
|
|
282
282
|
"engines": {
|
|
283
283
|
"node": ">=20"
|
|
@@ -936,15 +936,15 @@
|
|
|
936
936
|
}
|
|
937
937
|
},
|
|
938
938
|
"node_modules/@next/env": {
|
|
939
|
-
"version": "16.2.
|
|
940
|
-
"resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.
|
|
941
|
-
"integrity": "sha512-
|
|
939
|
+
"version": "16.2.4",
|
|
940
|
+
"resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.4.tgz",
|
|
941
|
+
"integrity": "sha512-dKkkOzOSwFYe5RX6y26fZgkSpVAlIOJKQHIiydQcrWH6y/97+RceSOAdjZ14Qa3zLduVUy0TXcn+EiM6t4rPgw==",
|
|
942
942
|
"license": "MIT"
|
|
943
943
|
},
|
|
944
944
|
"node_modules/@next/mdx": {
|
|
945
|
-
"version": "16.2.
|
|
946
|
-
"resolved": "https://registry.npmjs.org/@next/mdx/-/mdx-16.2.
|
|
947
|
-
"integrity": "sha512-
|
|
945
|
+
"version": "16.2.4",
|
|
946
|
+
"resolved": "https://registry.npmjs.org/@next/mdx/-/mdx-16.2.4.tgz",
|
|
947
|
+
"integrity": "sha512-e/3bgla+/oF3vDlndI0eFPa0bnP47HPVA0InsAJi7Jr3DwV8WpEGuOcm/3PdI5/93FfNiBhMVeVHZpm1sFlmJw==",
|
|
948
948
|
"license": "MIT",
|
|
949
949
|
"dependencies": {
|
|
950
950
|
"source-map": "^0.7.0"
|
|
@@ -963,9 +963,9 @@
|
|
|
963
963
|
}
|
|
964
964
|
},
|
|
965
965
|
"node_modules/@next/swc-darwin-arm64": {
|
|
966
|
-
"version": "16.2.
|
|
967
|
-
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.
|
|
968
|
-
"integrity": "sha512-
|
|
966
|
+
"version": "16.2.4",
|
|
967
|
+
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.4.tgz",
|
|
968
|
+
"integrity": "sha512-OXTFFox5EKN1Ym08vfrz+OXxmCcEjT4SFMbNRsWZE99dMqt2Kcusl5MqPXcW232RYkMLQTy0hqgAMEsfEd/l2A==",
|
|
969
969
|
"cpu": [
|
|
970
970
|
"arm64"
|
|
971
971
|
],
|
|
@@ -979,9 +979,9 @@
|
|
|
979
979
|
}
|
|
980
980
|
},
|
|
981
981
|
"node_modules/@next/swc-darwin-x64": {
|
|
982
|
-
"version": "16.2.
|
|
983
|
-
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.
|
|
984
|
-
"integrity": "sha512-
|
|
982
|
+
"version": "16.2.4",
|
|
983
|
+
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.4.tgz",
|
|
984
|
+
"integrity": "sha512-XhpVnUfmYWvD3YrXu55XdcAkQtOnvaI6wtQa8fuF5fGoKoxIUZ0kWPtcOfqJEWngFF/lOS9l3+O9CcownhiQxQ==",
|
|
985
985
|
"cpu": [
|
|
986
986
|
"x64"
|
|
987
987
|
],
|
|
@@ -995,9 +995,9 @@
|
|
|
995
995
|
}
|
|
996
996
|
},
|
|
997
997
|
"node_modules/@next/swc-linux-arm64-gnu": {
|
|
998
|
-
"version": "16.2.
|
|
999
|
-
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.
|
|
1000
|
-
"integrity": "sha512-
|
|
998
|
+
"version": "16.2.4",
|
|
999
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.4.tgz",
|
|
1000
|
+
"integrity": "sha512-Mx/tjlNA3G8kg14QvuGAJ4xBwPk1tUHq56JxZ8CXnZwz1Etz714soCEzGQQzVMz4bEnGPowzkV6Xrp6wAkEWOQ==",
|
|
1001
1001
|
"cpu": [
|
|
1002
1002
|
"arm64"
|
|
1003
1003
|
],
|
|
@@ -1014,9 +1014,9 @@
|
|
|
1014
1014
|
}
|
|
1015
1015
|
},
|
|
1016
1016
|
"node_modules/@next/swc-linux-arm64-musl": {
|
|
1017
|
-
"version": "16.2.
|
|
1018
|
-
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.
|
|
1019
|
-
"integrity": "sha512
|
|
1017
|
+
"version": "16.2.4",
|
|
1018
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.4.tgz",
|
|
1019
|
+
"integrity": "sha512-iVMMp14514u7Nup2umQS03nT/bN9HurK8ufylC3FZNykrwjtx7V1A7+4kvhbDSCeonTVqV3Txnv0Lu+m2oDXNg==",
|
|
1020
1020
|
"cpu": [
|
|
1021
1021
|
"arm64"
|
|
1022
1022
|
],
|
|
@@ -1033,9 +1033,9 @@
|
|
|
1033
1033
|
}
|
|
1034
1034
|
},
|
|
1035
1035
|
"node_modules/@next/swc-linux-x64-gnu": {
|
|
1036
|
-
"version": "16.2.
|
|
1037
|
-
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.
|
|
1038
|
-
"integrity": "sha512
|
|
1036
|
+
"version": "16.2.4",
|
|
1037
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.4.tgz",
|
|
1038
|
+
"integrity": "sha512-EZOvm1aQWgnI/N/xcWOlnS3RQBk0VtVav5Zo7n4p0A7UKyTDx047k8opDbXgBpHl4CulRqRfbw3QrX2w5UOXMQ==",
|
|
1039
1039
|
"cpu": [
|
|
1040
1040
|
"x64"
|
|
1041
1041
|
],
|
|
@@ -1052,9 +1052,9 @@
|
|
|
1052
1052
|
}
|
|
1053
1053
|
},
|
|
1054
1054
|
"node_modules/@next/swc-linux-x64-musl": {
|
|
1055
|
-
"version": "16.2.
|
|
1056
|
-
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.
|
|
1057
|
-
"integrity": "sha512-
|
|
1055
|
+
"version": "16.2.4",
|
|
1056
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.4.tgz",
|
|
1057
|
+
"integrity": "sha512-h9FxsngCm9cTBf71AR4fGznDEDx1hS7+kSEiIRjq5kO1oXWm07DxVGZjCvk0SGx7TSjlUqhI8oOyz7NfwAdPoA==",
|
|
1058
1058
|
"cpu": [
|
|
1059
1059
|
"x64"
|
|
1060
1060
|
],
|
|
@@ -1071,9 +1071,9 @@
|
|
|
1071
1071
|
}
|
|
1072
1072
|
},
|
|
1073
1073
|
"node_modules/@next/swc-win32-arm64-msvc": {
|
|
1074
|
-
"version": "16.2.
|
|
1075
|
-
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.
|
|
1076
|
-
"integrity": "sha512-
|
|
1074
|
+
"version": "16.2.4",
|
|
1075
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.4.tgz",
|
|
1076
|
+
"integrity": "sha512-3NdJV5OXMSOeJYijX+bjaLge3mJBlh4ybydbT4GFoB/2hAojWHtMhl3CYlYoMrjPuodp0nzFVi4Tj2+WaMg+Ow==",
|
|
1077
1077
|
"cpu": [
|
|
1078
1078
|
"arm64"
|
|
1079
1079
|
],
|
|
@@ -1087,9 +1087,9 @@
|
|
|
1087
1087
|
}
|
|
1088
1088
|
},
|
|
1089
1089
|
"node_modules/@next/swc-win32-x64-msvc": {
|
|
1090
|
-
"version": "16.2.
|
|
1091
|
-
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.
|
|
1092
|
-
"integrity": "sha512-
|
|
1090
|
+
"version": "16.2.4",
|
|
1091
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.4.tgz",
|
|
1092
|
+
"integrity": "sha512-kMVGgsqhO5YTYODD9IPGGhA6iprWidQckK3LmPeW08PIFENRmgfb4MjXHO+p//d+ts2rpjvK5gXWzXSMrPl9cw==",
|
|
1093
1093
|
"cpu": [
|
|
1094
1094
|
"x64"
|
|
1095
1095
|
],
|
|
@@ -1103,9 +1103,9 @@
|
|
|
1103
1103
|
}
|
|
1104
1104
|
},
|
|
1105
1105
|
"node_modules/@next/third-parties": {
|
|
1106
|
-
"version": "16.2.
|
|
1107
|
-
"resolved": "https://registry.npmjs.org/@next/third-parties/-/third-parties-16.2.
|
|
1108
|
-
"integrity": "sha512-
|
|
1106
|
+
"version": "16.2.4",
|
|
1107
|
+
"resolved": "https://registry.npmjs.org/@next/third-parties/-/third-parties-16.2.4.tgz",
|
|
1108
|
+
"integrity": "sha512-FhDDX02cAr0WIo3la+QHP3XaAAV6twCfFk/y8pHikFT8MHwNpB3XgEdaT0omLrIWBORhM5wkbbUJFq+pBqZzmw==",
|
|
1109
1109
|
"license": "MIT",
|
|
1110
1110
|
"dependencies": {
|
|
1111
1111
|
"third-party-capital": "1.0.20"
|
|
@@ -1276,9 +1276,9 @@
|
|
|
1276
1276
|
}
|
|
1277
1277
|
},
|
|
1278
1278
|
"node_modules/@tailwindcss/node": {
|
|
1279
|
-
"version": "4.2.
|
|
1280
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.
|
|
1281
|
-
"integrity": "sha512-
|
|
1279
|
+
"version": "4.2.4",
|
|
1280
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.4.tgz",
|
|
1281
|
+
"integrity": "sha512-Ai7+yQPxz3ddrDQzFfBKdHEVBg0w3Zl83jnjuwxnZOsnH9pGn93QHQtpU0p/8rYWxvbFZHneni6p1BSLK4DkGA==",
|
|
1282
1282
|
"license": "MIT",
|
|
1283
1283
|
"dependencies": {
|
|
1284
1284
|
"@jridgewell/remapping": "^2.3.5",
|
|
@@ -1287,36 +1287,36 @@
|
|
|
1287
1287
|
"lightningcss": "1.32.0",
|
|
1288
1288
|
"magic-string": "^0.30.21",
|
|
1289
1289
|
"source-map-js": "^1.2.1",
|
|
1290
|
-
"tailwindcss": "4.2.
|
|
1290
|
+
"tailwindcss": "4.2.4"
|
|
1291
1291
|
}
|
|
1292
1292
|
},
|
|
1293
1293
|
"node_modules/@tailwindcss/oxide": {
|
|
1294
|
-
"version": "4.2.
|
|
1295
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.
|
|
1296
|
-
"integrity": "sha512-
|
|
1294
|
+
"version": "4.2.4",
|
|
1295
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.4.tgz",
|
|
1296
|
+
"integrity": "sha512-9El/iI069DKDSXwTvB9J4BwdO5JhRrOweGaK25taBAvBXyXqJAX+Jqdvs8r8gKpsI/1m0LeJLyQYTf/WLrBT1Q==",
|
|
1297
1297
|
"license": "MIT",
|
|
1298
1298
|
"engines": {
|
|
1299
1299
|
"node": ">= 20"
|
|
1300
1300
|
},
|
|
1301
1301
|
"optionalDependencies": {
|
|
1302
|
-
"@tailwindcss/oxide-android-arm64": "4.2.
|
|
1303
|
-
"@tailwindcss/oxide-darwin-arm64": "4.2.
|
|
1304
|
-
"@tailwindcss/oxide-darwin-x64": "4.2.
|
|
1305
|
-
"@tailwindcss/oxide-freebsd-x64": "4.2.
|
|
1306
|
-
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.
|
|
1307
|
-
"@tailwindcss/oxide-linux-arm64-gnu": "4.2.
|
|
1308
|
-
"@tailwindcss/oxide-linux-arm64-musl": "4.2.
|
|
1309
|
-
"@tailwindcss/oxide-linux-x64-gnu": "4.2.
|
|
1310
|
-
"@tailwindcss/oxide-linux-x64-musl": "4.2.
|
|
1311
|
-
"@tailwindcss/oxide-wasm32-wasi": "4.2.
|
|
1312
|
-
"@tailwindcss/oxide-win32-arm64-msvc": "4.2.
|
|
1313
|
-
"@tailwindcss/oxide-win32-x64-msvc": "4.2.
|
|
1302
|
+
"@tailwindcss/oxide-android-arm64": "4.2.4",
|
|
1303
|
+
"@tailwindcss/oxide-darwin-arm64": "4.2.4",
|
|
1304
|
+
"@tailwindcss/oxide-darwin-x64": "4.2.4",
|
|
1305
|
+
"@tailwindcss/oxide-freebsd-x64": "4.2.4",
|
|
1306
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.4",
|
|
1307
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "4.2.4",
|
|
1308
|
+
"@tailwindcss/oxide-linux-arm64-musl": "4.2.4",
|
|
1309
|
+
"@tailwindcss/oxide-linux-x64-gnu": "4.2.4",
|
|
1310
|
+
"@tailwindcss/oxide-linux-x64-musl": "4.2.4",
|
|
1311
|
+
"@tailwindcss/oxide-wasm32-wasi": "4.2.4",
|
|
1312
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "4.2.4",
|
|
1313
|
+
"@tailwindcss/oxide-win32-x64-msvc": "4.2.4"
|
|
1314
1314
|
}
|
|
1315
1315
|
},
|
|
1316
1316
|
"node_modules/@tailwindcss/oxide-android-arm64": {
|
|
1317
|
-
"version": "4.2.
|
|
1318
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.
|
|
1319
|
-
"integrity": "sha512-
|
|
1317
|
+
"version": "4.2.4",
|
|
1318
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.4.tgz",
|
|
1319
|
+
"integrity": "sha512-e7MOr1SAn9U8KlZzPi1ZXGZHeC5anY36qjNwmZv9pOJ8E4Q6jmD1vyEHkQFmNOIN7twGPEMXRHmitN4zCMN03g==",
|
|
1320
1320
|
"cpu": [
|
|
1321
1321
|
"arm64"
|
|
1322
1322
|
],
|
|
@@ -1330,9 +1330,9 @@
|
|
|
1330
1330
|
}
|
|
1331
1331
|
},
|
|
1332
1332
|
"node_modules/@tailwindcss/oxide-darwin-arm64": {
|
|
1333
|
-
"version": "4.2.
|
|
1334
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.
|
|
1335
|
-
"integrity": "sha512-
|
|
1333
|
+
"version": "4.2.4",
|
|
1334
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.4.tgz",
|
|
1335
|
+
"integrity": "sha512-tSC/Kbqpz/5/o/C2sG7QvOxAKqyd10bq+ypZNf+9Fi2TvbVbv1zNpcEptcsU7DPROaSbVgUXmrzKhurFvo5eDg==",
|
|
1336
1336
|
"cpu": [
|
|
1337
1337
|
"arm64"
|
|
1338
1338
|
],
|
|
@@ -1346,9 +1346,9 @@
|
|
|
1346
1346
|
}
|
|
1347
1347
|
},
|
|
1348
1348
|
"node_modules/@tailwindcss/oxide-darwin-x64": {
|
|
1349
|
-
"version": "4.2.
|
|
1350
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.
|
|
1351
|
-
"integrity": "sha512-
|
|
1349
|
+
"version": "4.2.4",
|
|
1350
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.4.tgz",
|
|
1351
|
+
"integrity": "sha512-yPyUXn3yO/ufR6+Kzv0t4fCg2qNr90jxXc5QqBpjlPNd0NqyDXcmQb/6weunH/MEDXW5dhyEi+agTDiqa3WsGg==",
|
|
1352
1352
|
"cpu": [
|
|
1353
1353
|
"x64"
|
|
1354
1354
|
],
|
|
@@ -1362,9 +1362,9 @@
|
|
|
1362
1362
|
}
|
|
1363
1363
|
},
|
|
1364
1364
|
"node_modules/@tailwindcss/oxide-freebsd-x64": {
|
|
1365
|
-
"version": "4.2.
|
|
1366
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.
|
|
1367
|
-
"integrity": "sha512-
|
|
1365
|
+
"version": "4.2.4",
|
|
1366
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.4.tgz",
|
|
1367
|
+
"integrity": "sha512-BoMIB4vMQtZsXdGLVc2z+P9DbETkiopogfWZKbWwM8b/1Vinbs4YcUwo+kM/KeLkX3Ygrf4/PsRndKaYhS8Eiw==",
|
|
1368
1368
|
"cpu": [
|
|
1369
1369
|
"x64"
|
|
1370
1370
|
],
|
|
@@ -1378,9 +1378,9 @@
|
|
|
1378
1378
|
}
|
|
1379
1379
|
},
|
|
1380
1380
|
"node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
|
|
1381
|
-
"version": "4.2.
|
|
1382
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.
|
|
1383
|
-
"integrity": "sha512-
|
|
1381
|
+
"version": "4.2.4",
|
|
1382
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.4.tgz",
|
|
1383
|
+
"integrity": "sha512-7pIHBLTHYRAlS7V22JNuTh33yLH4VElwKtB3bwchK/UaKUPpQ0lPQiOWcbm4V3WP2I6fNIJ23vABIvoy2izdwA==",
|
|
1384
1384
|
"cpu": [
|
|
1385
1385
|
"arm"
|
|
1386
1386
|
],
|
|
@@ -1394,9 +1394,9 @@
|
|
|
1394
1394
|
}
|
|
1395
1395
|
},
|
|
1396
1396
|
"node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
|
|
1397
|
-
"version": "4.2.
|
|
1398
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.
|
|
1399
|
-
"integrity": "sha512
|
|
1397
|
+
"version": "4.2.4",
|
|
1398
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.4.tgz",
|
|
1399
|
+
"integrity": "sha512-+E4wxJ0ZGOzSH325reXTWB48l42i93kQqMvDyz5gqfRzRZ7faNhnmvlV4EPGJU3QJM/3Ab5jhJ5pCRUsKn6OQw==",
|
|
1400
1400
|
"cpu": [
|
|
1401
1401
|
"arm64"
|
|
1402
1402
|
],
|
|
@@ -1413,9 +1413,9 @@
|
|
|
1413
1413
|
}
|
|
1414
1414
|
},
|
|
1415
1415
|
"node_modules/@tailwindcss/oxide-linux-arm64-musl": {
|
|
1416
|
-
"version": "4.2.
|
|
1417
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.
|
|
1418
|
-
"integrity": "sha512-
|
|
1416
|
+
"version": "4.2.4",
|
|
1417
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.4.tgz",
|
|
1418
|
+
"integrity": "sha512-bBADEGAbo4ASnppIziaQJelekCxdMaxisrk+fB7Thit72IBnALp9K6ffA2G4ruj90G9XRS2VQ6q2bCKbfFV82g==",
|
|
1419
1419
|
"cpu": [
|
|
1420
1420
|
"arm64"
|
|
1421
1421
|
],
|
|
@@ -1432,9 +1432,9 @@
|
|
|
1432
1432
|
}
|
|
1433
1433
|
},
|
|
1434
1434
|
"node_modules/@tailwindcss/oxide-linux-x64-gnu": {
|
|
1435
|
-
"version": "4.2.
|
|
1436
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.
|
|
1437
|
-
"integrity": "sha512-
|
|
1435
|
+
"version": "4.2.4",
|
|
1436
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.4.tgz",
|
|
1437
|
+
"integrity": "sha512-7Mx25E4WTfnht0TVRTyC00j3i0M+EeFe7wguMDTlX4mRxafznw0CA8WJkFjWYH5BlgELd1kSjuU2JiPnNZbJDA==",
|
|
1438
1438
|
"cpu": [
|
|
1439
1439
|
"x64"
|
|
1440
1440
|
],
|
|
@@ -1451,9 +1451,9 @@
|
|
|
1451
1451
|
}
|
|
1452
1452
|
},
|
|
1453
1453
|
"node_modules/@tailwindcss/oxide-linux-x64-musl": {
|
|
1454
|
-
"version": "4.2.
|
|
1455
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.
|
|
1456
|
-
"integrity": "sha512-
|
|
1454
|
+
"version": "4.2.4",
|
|
1455
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.4.tgz",
|
|
1456
|
+
"integrity": "sha512-2wwJRF7nyhOR0hhHoChc04xngV3iS+akccHTGtz965FwF0up4b2lOdo6kI1EbDaEXKgvcrFBYcYQQ/rrnWFVfA==",
|
|
1457
1457
|
"cpu": [
|
|
1458
1458
|
"x64"
|
|
1459
1459
|
],
|
|
@@ -1470,9 +1470,9 @@
|
|
|
1470
1470
|
}
|
|
1471
1471
|
},
|
|
1472
1472
|
"node_modules/@tailwindcss/oxide-wasm32-wasi": {
|
|
1473
|
-
"version": "4.2.
|
|
1474
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.
|
|
1475
|
-
"integrity": "sha512-
|
|
1473
|
+
"version": "4.2.4",
|
|
1474
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.4.tgz",
|
|
1475
|
+
"integrity": "sha512-FQsqApeor8Fo6gUEklzmaa9994orJZZDBAlQpK2Mq+DslRKFJeD6AjHpBQ0kZFQohVr8o85PPh8eOy86VlSCmw==",
|
|
1476
1476
|
"bundleDependencies": [
|
|
1477
1477
|
"@napi-rs/wasm-runtime",
|
|
1478
1478
|
"@emnapi/core",
|
|
@@ -1557,9 +1557,9 @@
|
|
|
1557
1557
|
"optional": true
|
|
1558
1558
|
},
|
|
1559
1559
|
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
|
1560
|
-
"version": "4.2.
|
|
1561
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.
|
|
1562
|
-
"integrity": "sha512-
|
|
1560
|
+
"version": "4.2.4",
|
|
1561
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.4.tgz",
|
|
1562
|
+
"integrity": "sha512-L9BXqxC4ToVgwMFqj3pmZRqyHEztulpUJzCxUtLjobMCzTPsGt1Fa9enKbOpY2iIyVtaHNeNvAK8ERP/64sqGQ==",
|
|
1563
1563
|
"cpu": [
|
|
1564
1564
|
"arm64"
|
|
1565
1565
|
],
|
|
@@ -1573,9 +1573,9 @@
|
|
|
1573
1573
|
}
|
|
1574
1574
|
},
|
|
1575
1575
|
"node_modules/@tailwindcss/oxide-win32-x64-msvc": {
|
|
1576
|
-
"version": "4.2.
|
|
1577
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.
|
|
1578
|
-
"integrity": "sha512-
|
|
1576
|
+
"version": "4.2.4",
|
|
1577
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.4.tgz",
|
|
1578
|
+
"integrity": "sha512-ESlKG0EpVJQwRjXDDa9rLvhEAh0mhP1sF7sap9dNZT0yyl9SAG6T7gdP09EH0vIv0UNTlo6jPWyujD6559fZvw==",
|
|
1579
1579
|
"cpu": [
|
|
1580
1580
|
"x64"
|
|
1581
1581
|
],
|
|
@@ -1589,16 +1589,16 @@
|
|
|
1589
1589
|
}
|
|
1590
1590
|
},
|
|
1591
1591
|
"node_modules/@tailwindcss/postcss": {
|
|
1592
|
-
"version": "4.2.
|
|
1593
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.2.
|
|
1594
|
-
"integrity": "sha512-
|
|
1592
|
+
"version": "4.2.4",
|
|
1593
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.2.4.tgz",
|
|
1594
|
+
"integrity": "sha512-wgAVj6nUWAolAu8YFvzT2cTBIElWHkjZwFYovF+xsqKsW2ADxM/X2opxj5NsF/qVccAOjRNe8X2IdPzMsWyHTg==",
|
|
1595
1595
|
"license": "MIT",
|
|
1596
1596
|
"dependencies": {
|
|
1597
1597
|
"@alloc/quick-lru": "^5.2.0",
|
|
1598
|
-
"@tailwindcss/node": "4.2.
|
|
1599
|
-
"@tailwindcss/oxide": "4.2.
|
|
1598
|
+
"@tailwindcss/node": "4.2.4",
|
|
1599
|
+
"@tailwindcss/oxide": "4.2.4",
|
|
1600
1600
|
"postcss": "^8.5.6",
|
|
1601
|
-
"tailwindcss": "4.2.
|
|
1601
|
+
"tailwindcss": "4.2.4"
|
|
1602
1602
|
}
|
|
1603
1603
|
},
|
|
1604
1604
|
"node_modules/@tailwindcss/typography": {
|
|
@@ -2152,9 +2152,9 @@
|
|
|
2152
2152
|
}
|
|
2153
2153
|
},
|
|
2154
2154
|
"node_modules/baseline-browser-mapping": {
|
|
2155
|
-
"version": "2.10.
|
|
2156
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.
|
|
2157
|
-
"integrity": "sha512-
|
|
2155
|
+
"version": "2.10.20",
|
|
2156
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.20.tgz",
|
|
2157
|
+
"integrity": "sha512-1AaXxEPfXT+GvTBJFuy4yXVHWJBXa4OdbIebGN/wX5DlsIkU0+wzGnd2lOzokSk51d5LUmqjgBLRLlypLUqInQ==",
|
|
2158
2158
|
"license": "Apache-2.0",
|
|
2159
2159
|
"bin": {
|
|
2160
2160
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -2980,9 +2980,9 @@
|
|
|
2980
2980
|
"license": "MIT"
|
|
2981
2981
|
},
|
|
2982
2982
|
"node_modules/electron-to-chromium": {
|
|
2983
|
-
"version": "1.5.
|
|
2984
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.
|
|
2985
|
-
"integrity": "sha512-
|
|
2983
|
+
"version": "1.5.341",
|
|
2984
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.341.tgz",
|
|
2985
|
+
"integrity": "sha512-1sZTssferjgDgaqRTc0ieP+ozzpOy7LQTPTtEW3yQFn4+ORdIAZWV5BthXPyHF7YqLvFJCUPhNhdAJQYlYUgiw==",
|
|
2986
2986
|
"license": "ISC"
|
|
2987
2987
|
},
|
|
2988
2988
|
"node_modules/enhanced-resolve": {
|
|
@@ -3759,9 +3759,9 @@
|
|
|
3759
3759
|
}
|
|
3760
3760
|
},
|
|
3761
3761
|
"node_modules/jsonfile": {
|
|
3762
|
-
"version": "6.2.
|
|
3763
|
-
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.
|
|
3764
|
-
"integrity": "sha512-
|
|
3762
|
+
"version": "6.2.1",
|
|
3763
|
+
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.1.tgz",
|
|
3764
|
+
"integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==",
|
|
3765
3765
|
"license": "MIT",
|
|
3766
3766
|
"dependencies": {
|
|
3767
3767
|
"universalify": "^2.0.0"
|
|
@@ -5309,12 +5309,12 @@
|
|
|
5309
5309
|
}
|
|
5310
5310
|
},
|
|
5311
5311
|
"node_modules/next": {
|
|
5312
|
-
"version": "16.2.
|
|
5313
|
-
"resolved": "https://registry.npmjs.org/next/-/next-16.2.
|
|
5314
|
-
"integrity": "sha512-
|
|
5312
|
+
"version": "16.2.4",
|
|
5313
|
+
"resolved": "https://registry.npmjs.org/next/-/next-16.2.4.tgz",
|
|
5314
|
+
"integrity": "sha512-kPvz56wF5frc+FxlHI5qnklCzbq53HTwORaWBGdT0vNoKh1Aya9XC8aPauH4NJxqtzbWsS5mAbctm4cr+EkQ2Q==",
|
|
5315
5315
|
"license": "MIT",
|
|
5316
5316
|
"dependencies": {
|
|
5317
|
-
"@next/env": "16.2.
|
|
5317
|
+
"@next/env": "16.2.4",
|
|
5318
5318
|
"@swc/helpers": "0.5.15",
|
|
5319
5319
|
"baseline-browser-mapping": "^2.9.19",
|
|
5320
5320
|
"caniuse-lite": "^1.0.30001579",
|
|
@@ -5328,14 +5328,14 @@
|
|
|
5328
5328
|
"node": ">=20.9.0"
|
|
5329
5329
|
},
|
|
5330
5330
|
"optionalDependencies": {
|
|
5331
|
-
"@next/swc-darwin-arm64": "16.2.
|
|
5332
|
-
"@next/swc-darwin-x64": "16.2.
|
|
5333
|
-
"@next/swc-linux-arm64-gnu": "16.2.
|
|
5334
|
-
"@next/swc-linux-arm64-musl": "16.2.
|
|
5335
|
-
"@next/swc-linux-x64-gnu": "16.2.
|
|
5336
|
-
"@next/swc-linux-x64-musl": "16.2.
|
|
5337
|
-
"@next/swc-win32-arm64-msvc": "16.2.
|
|
5338
|
-
"@next/swc-win32-x64-msvc": "16.2.
|
|
5331
|
+
"@next/swc-darwin-arm64": "16.2.4",
|
|
5332
|
+
"@next/swc-darwin-x64": "16.2.4",
|
|
5333
|
+
"@next/swc-linux-arm64-gnu": "16.2.4",
|
|
5334
|
+
"@next/swc-linux-arm64-musl": "16.2.4",
|
|
5335
|
+
"@next/swc-linux-x64-gnu": "16.2.4",
|
|
5336
|
+
"@next/swc-linux-x64-musl": "16.2.4",
|
|
5337
|
+
"@next/swc-win32-arm64-msvc": "16.2.4",
|
|
5338
|
+
"@next/swc-win32-x64-msvc": "16.2.4",
|
|
5339
5339
|
"sharp": "^0.34.5"
|
|
5340
5340
|
},
|
|
5341
5341
|
"peerDependencies": {
|
|
@@ -5441,18 +5441,18 @@
|
|
|
5441
5441
|
"license": "MIT"
|
|
5442
5442
|
},
|
|
5443
5443
|
"node_modules/oniguruma-parser": {
|
|
5444
|
-
"version": "0.12.
|
|
5445
|
-
"resolved": "https://registry.npmjs.org/oniguruma-parser/-/oniguruma-parser-0.12.
|
|
5446
|
-
"integrity": "sha512-
|
|
5444
|
+
"version": "0.12.2",
|
|
5445
|
+
"resolved": "https://registry.npmjs.org/oniguruma-parser/-/oniguruma-parser-0.12.2.tgz",
|
|
5446
|
+
"integrity": "sha512-6HVa5oIrgMC6aA6WF6XyyqbhRPJrKR02L20+2+zpDtO5QAzGHAUGw5TKQvwi5vctNnRHkJYmjAhRVQF2EKdTQw==",
|
|
5447
5447
|
"license": "MIT"
|
|
5448
5448
|
},
|
|
5449
5449
|
"node_modules/oniguruma-to-es": {
|
|
5450
|
-
"version": "4.3.
|
|
5451
|
-
"resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-4.3.
|
|
5452
|
-
"integrity": "sha512-
|
|
5450
|
+
"version": "4.3.6",
|
|
5451
|
+
"resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-4.3.6.tgz",
|
|
5452
|
+
"integrity": "sha512-csuQ9x3Yr0cEIs/Zgx/OEt9iBw9vqIunAPQkx19R/fiMq2oGVTgcMqO/V3Ybqefr1TBvosI6jU539ksaBULJyA==",
|
|
5453
5453
|
"license": "MIT",
|
|
5454
5454
|
"dependencies": {
|
|
5455
|
-
"oniguruma-parser": "^0.12.
|
|
5455
|
+
"oniguruma-parser": "^0.12.2",
|
|
5456
5456
|
"regex": "^6.1.0",
|
|
5457
5457
|
"regex-recursion": "^6.0.2"
|
|
5458
5458
|
}
|
|
@@ -6264,21 +6264,21 @@
|
|
|
6264
6264
|
}
|
|
6265
6265
|
},
|
|
6266
6266
|
"node_modules/stylis": {
|
|
6267
|
-
"version": "4.
|
|
6268
|
-
"resolved": "https://registry.npmjs.org/stylis/-/stylis-4.
|
|
6269
|
-
"integrity": "sha512-
|
|
6267
|
+
"version": "4.4.0",
|
|
6268
|
+
"resolved": "https://registry.npmjs.org/stylis/-/stylis-4.4.0.tgz",
|
|
6269
|
+
"integrity": "sha512-5Z9ZpRzfuH6l/UAvCPAPUo3665Nk2wLaZU3x+TLHKVzIz33+sbJqbtrYoC3KD4/uVOr2Zp+L0LySezP9OHV9yA==",
|
|
6270
6270
|
"license": "MIT"
|
|
6271
6271
|
},
|
|
6272
6272
|
"node_modules/tailwindcss": {
|
|
6273
|
-
"version": "4.2.
|
|
6274
|
-
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.
|
|
6275
|
-
"integrity": "sha512-
|
|
6273
|
+
"version": "4.2.4",
|
|
6274
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.4.tgz",
|
|
6275
|
+
"integrity": "sha512-HhKppgO81FQof5m6TEnuBWCZGgfRAWbaeOaGT00KOy/Pf/j6oUihdvBpA7ltCeAvZpFhW3j0PTclkxsd4IXYDA==",
|
|
6276
6276
|
"license": "MIT"
|
|
6277
6277
|
},
|
|
6278
6278
|
"node_modules/tapable": {
|
|
6279
|
-
"version": "2.3.
|
|
6280
|
-
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.
|
|
6281
|
-
"integrity": "sha512-
|
|
6279
|
+
"version": "2.3.3",
|
|
6280
|
+
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz",
|
|
6281
|
+
"integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==",
|
|
6282
6282
|
"license": "MIT",
|
|
6283
6283
|
"engines": {
|
|
6284
6284
|
"node": ">=6"
|
|
@@ -6339,9 +6339,9 @@
|
|
|
6339
6339
|
"license": "0BSD"
|
|
6340
6340
|
},
|
|
6341
6341
|
"node_modules/typescript": {
|
|
6342
|
-
"version": "6.0.
|
|
6343
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.
|
|
6344
|
-
"integrity": "sha512-
|
|
6342
|
+
"version": "6.0.3",
|
|
6343
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
|
|
6344
|
+
"integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==",
|
|
6345
6345
|
"license": "Apache-2.0",
|
|
6346
6346
|
"bin": {
|
|
6347
6347
|
"tsc": "bin/tsc",
|