Compare commits

...

6 Commits

Author SHA1 Message Date
github-actions[bot] 469e438741 Release 0.4.1 (#949)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-06-21 17:26:01 +07:00
Marcus Schiesser 56fabbb4f5 fix: Release env changes to tokenizer (#952) 2024-06-21 16:58:02 +07:00
Alex Yang dfd8cc1ba4 chore: fix new-version script (#950) 2024-06-20 16:34:09 -07:00
Fabian Wimmer cba54061a2 fix: every Llama Parse job being called "blob" (#946)
Co-authored-by: Alex Yang <himself65@outlook.com>
2024-06-20 16:32:20 -07:00
Peter Goldstein ed467a9889 feat: add Anthropic Claude 3.5 Sonnet model (#948) 2024-06-20 16:21:58 -07:00
Alex Yang 3c4791007f fix: groq llm (#947) 2024-06-20 16:19:55 -07:00
34 changed files with 363 additions and 127 deletions
+9
View File
@@ -1,5 +1,14 @@
# docs
## 0.0.27
### Patch Changes
- Updated dependencies [3c47910]
- Updated dependencies [ed467a9]
- Updated dependencies [cba5406]
- llamaindex@0.4.1
## 0.0.26
### Patch Changes
@@ -24,6 +24,7 @@ ANTHROPIC_CLAUDE_2_1 = "anthropic.claude-v2:1";
ANTHROPIC_CLAUDE_3_SONNET = "anthropic.claude-3-sonnet-20240229-v1:0";
ANTHROPIC_CLAUDE_3_HAIKU = "anthropic.claude-3-haiku-20240307-v1:0";
ANTHROPIC_CLAUDE_3_OPUS = "anthropic.claude-3-opus-20240229-v1:0"; // available on us-west-2
ANTHROPIC_CLAUDE_3_5_SONNET = "anthropic.claude-3-5-sonnet-20240620-v1:0";
```
Sonnet, Haiku and Opus are multimodal, image_url only supports base64 data url format, e.g. `data:image/jpeg;base64,SGVsbG8sIFdvcmxkIQ==`
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "0.0.26",
"version": "0.0.27",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
+1 -1
View File
@@ -35,4 +35,4 @@ async function main() {
console.log(response.response);
}
await main();
main().catch(console.error);
+1 -1
View File
@@ -15,7 +15,7 @@
"release": "pnpm run check-minor-version && pnpm run build:release && changeset publish",
"release-snapshot": "pnpm run check-minor-version && pnpm run build:release && changeset publish --tag snapshot",
"check-minor-version": "node ./scripts/check-minor-version.mjs",
"new-version": "changeset version && pnpm run check-minor-version && pnpm format:write && pnpm run build:release",
"new-version": "changeset version && pnpm run check-minor-version && pnpm format:write && pnpm install && pnpm run build:release",
"new-snapshot": "pnpm run build:release && changeset version --snapshot"
},
"devDependencies": {
@@ -1,5 +1,15 @@
# @llamaindex/autotool-02-next-example
## 0.1.11
### Patch Changes
- Updated dependencies [3c47910]
- Updated dependencies [ed467a9]
- Updated dependencies [cba5406]
- llamaindex@0.4.1
- @llamaindex/autotool@1.0.0
## 0.1.10
### Patch Changes
@@ -1,7 +1,7 @@
{
"name": "@llamaindex/autotool-02-next-example",
"private": true,
"version": "0.1.10",
"version": "0.1.11",
"scripts": {
"dev": "next dev",
"build": "next build",
+1 -1
View File
@@ -51,7 +51,7 @@
"unplugin": "^1.10.1"
},
"peerDependencies": {
"llamaindex": "^0.4.0",
"llamaindex": "^0.4.1",
"openai": "^4",
"typescript": "^4"
},
+10
View File
@@ -1,5 +1,15 @@
# @llamaindex/community
## 0.0.5
### Patch Changes
- ed467a9: Add model ids for Anthropic Claude 3.5 Sonnet model on Anthropic and Bedrock
- Updated dependencies [3c47910]
- Updated dependencies [ed467a9]
- Updated dependencies [cba5406]
- llamaindex@0.4.1
## 0.0.4
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@llamaindex/community",
"description": "Community package for LlamaIndexTS",
"version": "0.0.4",
"version": "0.0.5",
"type": "module",
"types": "dist/type/index.d.ts",
"main": "dist/cjs/index.js",
@@ -67,6 +67,7 @@ export enum BEDROCK_MODELS {
ANTHROPIC_CLAUDE_3_SONNET = "anthropic.claude-3-sonnet-20240229-v1:0",
ANTHROPIC_CLAUDE_3_HAIKU = "anthropic.claude-3-haiku-20240307-v1:0",
ANTHROPIC_CLAUDE_3_OPUS = "anthropic.claude-3-opus-20240229-v1:0",
ANTHROPIC_CLAUDE_3_5_SONNET = "anthropic.claude-3-5-sonnet-20240620-v1:0",
META_LLAMA2_13B_CHAT = "meta.llama2-13b-chat-v1",
META_LLAMA2_70B_CHAT = "meta.llama2-70b-chat-v1",
META_LLAMA3_8B_INSTRUCT = "meta.llama3-8b-instruct-v1:0",
@@ -100,6 +101,7 @@ const CHAT_ONLY_MODELS = {
[BEDROCK_MODELS.ANTHROPIC_CLAUDE_3_SONNET]: 200000,
[BEDROCK_MODELS.ANTHROPIC_CLAUDE_3_HAIKU]: 200000,
[BEDROCK_MODELS.ANTHROPIC_CLAUDE_3_OPUS]: 200000,
[BEDROCK_MODELS.ANTHROPIC_CLAUDE_3_5_SONNET]: 200000,
[BEDROCK_MODELS.META_LLAMA2_13B_CHAT]: 2048,
[BEDROCK_MODELS.META_LLAMA2_70B_CHAT]: 4096,
[BEDROCK_MODELS.META_LLAMA3_8B_INSTRUCT]: 8192,
@@ -126,6 +128,7 @@ export const STREAMING_MODELS = new Set([
BEDROCK_MODELS.ANTHROPIC_CLAUDE_3_SONNET,
BEDROCK_MODELS.ANTHROPIC_CLAUDE_3_HAIKU,
BEDROCK_MODELS.ANTHROPIC_CLAUDE_3_OPUS,
BEDROCK_MODELS.ANTHROPIC_CLAUDE_3_5_SONNET,
BEDROCK_MODELS.META_LLAMA2_13B_CHAT,
BEDROCK_MODELS.META_LLAMA2_70B_CHAT,
BEDROCK_MODELS.META_LLAMA3_8B_INSTRUCT,
+6
View File
@@ -1,5 +1,11 @@
# @llamaindex/env
## 0.1.4
### Patch Changes
- 56fabbb: Release env changes to tokenizer
## 0.1.3
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@llamaindex/env",
"version": "0.1.3",
"version": "0.1.4",
"exports": {
".": "./src/index.ts"
},
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@llamaindex/env",
"description": "environment wrapper, supports all JS environment including node, deno, bun, edge runtime, and cloudflare worker",
"version": "0.1.3",
"version": "0.1.4",
"type": "module",
"types": "dist/type/index.d.ts",
"main": "dist/cjs/index.js",
+9
View File
@@ -1,5 +1,14 @@
# @llamaindex/experimental
## 0.0.36
### Patch Changes
- Updated dependencies [3c47910]
- Updated dependencies [ed467a9]
- Updated dependencies [cba5406]
- llamaindex@0.4.1
## 0.0.35
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@llamaindex/experimental",
"description": "Experimental package for LlamaIndexTS",
"version": "0.0.35",
"version": "0.0.36",
"type": "module",
"types": "dist/type/index.d.ts",
"main": "dist/cjs/index.js",
+10
View File
@@ -1,5 +1,15 @@
# llamaindex
## 0.4.1
### Patch Changes
- 3c47910: fix: groq llm
- ed467a9: Add model ids for Anthropic Claude 3.5 Sonnet model on Anthropic and Bedrock
- cba5406: fix: every Llama Parse job being called "blob"
- Updated dependencies [56fabbb]
- @llamaindex/env@0.1.4
## 0.4.0
### Minor Changes
@@ -1,5 +1,14 @@
# @llamaindex/cloudflare-worker-agent-test
## 0.0.20
### Patch Changes
- Updated dependencies [3c47910]
- Updated dependencies [ed467a9]
- Updated dependencies [cba5406]
- llamaindex@0.4.1
## 0.0.19
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@llamaindex/cloudflare-worker-agent-test",
"version": "0.0.19",
"version": "0.0.20",
"type": "module",
"private": true,
"scripts": {
@@ -1,5 +1,14 @@
# @llamaindex/next-agent-test
## 0.1.20
### Patch Changes
- Updated dependencies [3c47910]
- Updated dependencies [ed467a9]
- Updated dependencies [cba5406]
- llamaindex@0.4.1
## 0.1.19
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@llamaindex/next-agent-test",
"version": "0.1.19",
"version": "0.1.20",
"private": true,
"scripts": {
"dev": "next dev",
@@ -11,7 +11,7 @@
"dependencies": {
"ai": "^3.2.1",
"llamaindex": "workspace:*",
"next": "14.2.3",
"next": "14.2.4",
"react": "18.3.1",
"react-dom": "18.3.1"
},
@@ -1,5 +1,14 @@
# test-edge-runtime
## 0.1.19
### Patch Changes
- Updated dependencies [3c47910]
- Updated dependencies [ed467a9]
- Updated dependencies [cba5406]
- llamaindex@0.4.1
## 0.1.18
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@llamaindex/nextjs-edge-runtime-test",
"version": "0.1.18",
"version": "0.1.19",
"private": true,
"scripts": {
"dev": "next dev",
@@ -9,7 +9,7 @@
},
"dependencies": {
"llamaindex": "workspace:*",
"next": "14.2.3",
"next": "14.2.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
@@ -1,5 +1,14 @@
# @llamaindex/waku-query-engine-test
## 0.0.20
### Patch Changes
- Updated dependencies [3c47910]
- Updated dependencies [ed467a9]
- Updated dependencies [cba5406]
- llamaindex@0.4.1
## 0.0.19
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@llamaindex/waku-query-engine-test",
"version": "0.0.19",
"version": "0.0.20",
"type": "module",
"private": true,
"scripts": {
+2 -2
View File
@@ -1,9 +1,9 @@
{
"name": "@llamaindex/llamaindex",
"version": "0.4.0",
"version": "0.4.1",
"exports": "./src/index.ts",
"imports": {
"@llamaindex/env": "jsr:@llamaindex/env@0.1.3"
"@llamaindex/env": "jsr:@llamaindex/env@0.1.4"
},
"publish": {
"include": ["LICENSE", "README.md", "src/**/*", "jsr.json"]
+2 -1
View File
@@ -1,6 +1,6 @@
{
"name": "llamaindex",
"version": "0.4.0",
"version": "0.4.1",
"expectedMinorVersion": "3",
"license": "MIT",
"type": "module",
@@ -42,6 +42,7 @@
"assemblyai": "^4.4.5",
"chromadb": "1.8.1",
"cohere-ai": "7.9.5",
"groq-sdk": "^0.5.0",
"js-tiktoken": "^1.0.12",
"lodash": "^4.17.21",
"magic-bytes.js": "^1.10.0",
+6
View File
@@ -86,15 +86,21 @@ export const ALL_AVAILABLE_V3_MODELS = {
"claude-3-haiku": { contextWindow: 200000 },
};
export const ALL_AVAILABLE_V3_5_MODELS = {
"claude-3-5-sonnet": { contextWindow: 200000 },
};
export const ALL_AVAILABLE_ANTHROPIC_MODELS = {
...ALL_AVAILABLE_ANTHROPIC_LEGACY_MODELS,
...ALL_AVAILABLE_V3_MODELS,
...ALL_AVAILABLE_V3_5_MODELS,
};
const AVAILABLE_ANTHROPIC_MODELS_WITHOUT_DATE: { [key: string]: string } = {
"claude-3-opus": "claude-3-opus-20240229",
"claude-3-sonnet": "claude-3-sonnet-20240229",
"claude-3-haiku": "claude-3-haiku-20240307",
"claude-3-5-sonnet": "claude-3-5-sonnet-20240620",
} as { [key in keyof typeof ALL_AVAILABLE_ANTHROPIC_MODELS]: string };
export type AnthropicAdditionalChatOptions = {};
+11 -8
View File
@@ -1,8 +1,13 @@
import { getEnv } from "@llamaindex/env";
import GroqSDK, { type ClientOptions } from "groq-sdk";
import { OpenAI } from "./openai.js";
export class Groq extends OpenAI {
constructor(init?: Partial<OpenAI>) {
constructor(
init?: Partial<OpenAI> & {
additionalSessionOptions?: ClientOptions;
},
) {
const {
apiKey = getEnv("GROQ_API_KEY"),
additionalSessionOptions = {},
@@ -10,18 +15,16 @@ export class Groq extends OpenAI {
...rest
} = init ?? {};
if (!apiKey) {
throw new Error("Set Groq Key in GROQ_API_KEY env variable"); // Tell user to set correct env variable, and not OPENAI_API_KEY
}
additionalSessionOptions.baseURL =
additionalSessionOptions.baseURL ?? "https://api.groq.com/openai/v1";
super({
apiKey,
additionalSessionOptions,
model,
...rest,
});
this.session.openai = new GroqSDK({
apiKey,
...init?.additionalSessionOptions,
}) as any;
}
}
+1 -1
View File
@@ -43,7 +43,7 @@ import type {
import { extractText, wrapLLMEvent } from "./utils.js";
export class OpenAISession {
openai: OrigOpenAI;
openai: Pick<OrigOpenAI, "chat" | "embeddings">;
constructor(options: ClientOptions & { azure?: boolean } = {}) {
if (options.azure) {
+1
View File
@@ -29,6 +29,7 @@ export default function withLlamaIndex(config: any) {
sharp$: false,
"onnxruntime-node$": false,
"@google-cloud/vertexai": false,
"groq-sdk": false,
};
return webpackConfig;
};
@@ -160,16 +160,17 @@ export class LlamaParseReader extends FileReader {
}
// Create a job for the LlamaParse API
private async createJob(data: Buffer): Promise<string> {
private async createJob(data: Buffer, fileName?: string): Promise<string> {
// Load data, set the mime type
const { mimeType, extension } = await this.getMimeType(data);
if (this.verbose) {
console.log(`Starting load for ${extension} file`);
const name = fileName ? fileName : extension;
console.log(`Starting load for ${name} file`);
}
const body = new FormData();
body.set("file", new Blob([data], { type: mimeType }));
body.set("file", new Blob([data], { type: mimeType }), fileName);
const LlamaParseBodyParams = {
language: this.language,
@@ -272,11 +273,15 @@ export class LlamaParseReader extends FileReader {
* To be used with resultType = "text" and "markdown"
*
* @param {Buffer} fileContent - The content of the file to be loaded.
* @param {string} [fileName] - The optional name of the file to be loaded.
* @return {Promise<Document[]>} A Promise object that resolves to an array of Document objects.
*/
async loadDataAsContent(fileContent: Buffer): Promise<Document[]> {
async loadDataAsContent(
fileContent: Buffer,
fileName?: string,
): Promise<Document[]> {
// Creates a job for the file
const jobId = await this.createJob(fileContent);
const jobId = await this.createJob(fileContent, fileName);
if (this.verbose) {
console.log(`Started parsing the file under job id ${jobId}`);
}
+6 -2
View File
@@ -12,11 +12,15 @@ export interface BaseReader {
* A FileReader takes file paths and imports data into Document objects.
*/
export abstract class FileReader implements BaseReader {
abstract loadDataAsContent(fileContent: Buffer): Promise<Document[]>;
abstract loadDataAsContent(
fileContent: Buffer,
fileName?: string,
): Promise<Document[]>;
async loadData(filePath: string): Promise<Document[]> {
const fileContent = await fs.readFile(filePath);
const docs = await this.loadDataAsContent(fileContent);
const fileName = path.basename(filePath);
const docs = await this.loadDataAsContent(fileContent, fileName);
docs.forEach(FileReader.addMetaData(filePath));
return docs;
}
+215 -93
View File
@@ -493,6 +493,9 @@ importers:
cohere-ai:
specifier: 7.9.5
version: 7.9.5(encoding@0.1.13)
groq-sdk:
specifier: ^0.5.0
version: 0.5.0(encoding@0.1.13)
js-tiktoken:
specifier: ^1.0.12
version: 1.0.12
@@ -625,8 +628,8 @@ importers:
specifier: workspace:*
version: link:../../..
next:
specifier: 14.2.3
version: 14.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
specifier: 14.2.4
version: 14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: 18.3.1
version: 18.3.1
@@ -665,8 +668,8 @@ importers:
specifier: workspace:*
version: link:../../..
next:
specifier: 14.2.3
version: 14.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
specifier: 14.2.4
version: 14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.3.1
version: 18.3.1
@@ -2837,6 +2840,9 @@ packages:
'@next/env@14.2.3':
resolution: {integrity: sha512-W7fd7IbkfmeeY2gXrzJYDx8D2lWKbVoTIj1o1ScPHNzvp30s1AuoEFSdr39bC5sjxJaxTtq3OTCZboNp0lNWHA==}
'@next/env@14.2.4':
resolution: {integrity: sha512-3EtkY5VDkuV2+lNmKlbkibIJxcO4oIHEhBWne6PaAp+76J9KoSsGvNikp6ivzAT8dhhBMYrm6op2pS1ApG0Hzg==}
'@next/env@14.3.0-canary.51':
resolution: {integrity: sha512-4s0CuMFn4t2aAXXpilWbBo29wXBFOczqyn0v/CMG7PFTNNM4KIwDIdnjulXMtmk3TMW1m/sT5aiaezLFXk8H+Q==}
@@ -2852,6 +2858,12 @@ packages:
cpu: [arm64]
os: [darwin]
'@next/swc-darwin-arm64@14.2.4':
resolution: {integrity: sha512-AH3mO4JlFUqsYcwFUHb1wAKlebHU/Hv2u2kb1pAuRanDZ7pD/A/KPD98RHZmwsJpdHQwfEc/06mgpSzwrJYnNg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
'@next/swc-darwin-arm64@14.3.0-canary.51':
resolution: {integrity: sha512-y8ZpTeZ57y9cVJcq7QlhOha1ZHbMhJndWC9ehxgAapaEhrephMf5JerbiJBKiINm1EiDNrZjXaKaB4anhUtqMw==}
engines: {node: '>= 10'}
@@ -2864,6 +2876,12 @@ packages:
cpu: [x64]
os: [darwin]
'@next/swc-darwin-x64@14.2.4':
resolution: {integrity: sha512-QVadW73sWIO6E2VroyUjuAxhWLZWEpiFqHdZdoQ/AMpN9YWGuHV8t2rChr0ahy+irKX5mlDU7OY68k3n4tAZTg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
'@next/swc-darwin-x64@14.3.0-canary.51':
resolution: {integrity: sha512-821XPWV5Oa/VTnKahBeInsvHHWpnDpg2Clc6IHUmPkm9W+WMT3H2fOIvAfK0nqais4+415gNkG2TmLmvKn6W0A==}
engines: {node: '>= 10'}
@@ -2876,6 +2894,12 @@ packages:
cpu: [arm64]
os: [linux]
'@next/swc-linux-arm64-gnu@14.2.4':
resolution: {integrity: sha512-KT6GUrb3oyCfcfJ+WliXuJnD6pCpZiosx2X3k66HLR+DMoilRb76LpWPGb4tZprawTtcnyrv75ElD6VncVamUQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@next/swc-linux-arm64-gnu@14.3.0-canary.51':
resolution: {integrity: sha512-dUMrJArBYhBUg1OD2CWcoRF0MpSDKN3EGm5GxQkAgRjmxxgWOdAiEKJzKwSskL7mix454cihBGAVT+2pXW2ugQ==}
engines: {node: '>= 10'}
@@ -2888,6 +2912,12 @@ packages:
cpu: [arm64]
os: [linux]
'@next/swc-linux-arm64-musl@14.2.4':
resolution: {integrity: sha512-Alv8/XGSs/ytwQcbCHwze1HmiIkIVhDHYLjczSVrf0Wi2MvKn/blt7+S6FJitj3yTlMwMxII1gIJ9WepI4aZ/A==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@next/swc-linux-arm64-musl@14.3.0-canary.51':
resolution: {integrity: sha512-e/XZ+U7ZAf9rX87kdGM6RhB5S2k4ODJZqoFImikmSQdSurAQA8wEyWthxUgGwZ4sJSTatNW47WzPRkq4pWW/jA==}
engines: {node: '>= 10'}
@@ -2900,6 +2930,12 @@ packages:
cpu: [x64]
os: [linux]
'@next/swc-linux-x64-gnu@14.2.4':
resolution: {integrity: sha512-ze0ShQDBPCqxLImzw4sCdfnB3lRmN3qGMB2GWDRlq5Wqy4G36pxtNOo2usu/Nm9+V2Rh/QQnrRc2l94kYFXO6Q==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@next/swc-linux-x64-gnu@14.3.0-canary.51':
resolution: {integrity: sha512-7M+ChrqCBM8baSkJ/nIn0+g/XNs8yiwrK8TKPfaWlqQCKCFF8FXpKm5Kh8lRvJHHe67LhecUrulR9rKbZ5zPHA==}
engines: {node: '>= 10'}
@@ -2912,6 +2948,12 @@ packages:
cpu: [x64]
os: [linux]
'@next/swc-linux-x64-musl@14.2.4':
resolution: {integrity: sha512-8dwC0UJoc6fC7PX70csdaznVMNr16hQrTDAMPvLPloazlcaWfdPogq+UpZX6Drqb1OBlwowz8iG7WR0Tzk/diQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@next/swc-linux-x64-musl@14.3.0-canary.51':
resolution: {integrity: sha512-PBSRtVivBrX0Pd9ep3bc504dOX88ONvUFr6B/6KmzVRRKxCkKG3lG2TvUTTi6tF0U40M+K8Gn8ePgRs48a/CWw==}
engines: {node: '>= 10'}
@@ -2924,6 +2966,12 @@ packages:
cpu: [arm64]
os: [win32]
'@next/swc-win32-arm64-msvc@14.2.4':
resolution: {integrity: sha512-jxyg67NbEWkDyvM+O8UDbPAyYRZqGLQDTPwvrBBeOSyVWW/jFQkQKQ70JDqDSYg1ZDdl+E3nkbFbq8xM8E9x8A==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
'@next/swc-win32-arm64-msvc@14.3.0-canary.51':
resolution: {integrity: sha512-QD0aOfl+261wxdMgKxsNDgTCFHkIgvyYjD+NzaVzgg6guwkVhYDvUtn2hyADjTBqrkpEnSA28G5Pg3YmcuwDdQ==}
engines: {node: '>= 10'}
@@ -2936,6 +2984,12 @@ packages:
cpu: [ia32]
os: [win32]
'@next/swc-win32-ia32-msvc@14.2.4':
resolution: {integrity: sha512-twrmN753hjXRdcrZmZttb/m5xaCBFa48Dt3FbeEItpJArxriYDunWxJn+QFXdJ3hPkm4u7CKxncVvnmgQMY1ag==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
'@next/swc-win32-ia32-msvc@14.3.0-canary.51':
resolution: {integrity: sha512-/K2fRFVr6gzb4y3LtjXhKpKt2vbAxAFZoCVG2vPTVChKd1IGpdlvM/omFPq0l1eIqoTigKNhOk8nFacqcAAyxA==}
engines: {node: '>= 10'}
@@ -2948,6 +3002,12 @@ packages:
cpu: [x64]
os: [win32]
'@next/swc-win32-x64-msvc@14.2.4':
resolution: {integrity: sha512-tkLrjBzqFTP8DVrAAQmZelEahfR9OxWpFR++vAI9FBhCiIxtwHwBHC23SBHCTURBtwB4kc/x44imVOnkKGNVGg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
'@next/swc-win32-x64-msvc@14.3.0-canary.51':
resolution: {integrity: sha512-7jaQw/8xVdrpE9jgNDh/P0XP9c0S0oZ88yFav7IyOvUKcq6I7al1qb/oqv6CrTQnapkycHP7tOI1pQfizHb1zw==}
engines: {node: '>= 10'}
@@ -6343,6 +6403,9 @@ packages:
resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==}
engines: {node: '>=6.0'}
groq-sdk@0.5.0:
resolution: {integrity: sha512-RVmhW7qZ+XZoy5fIuSdx/LGQJONpL8MHgZEW7dFwTdgkzStub2XQx6OKv28CHogijdwH41J+Npj/z2jBPu3vmw==}
gtoken@7.1.0:
resolution: {integrity: sha512-pCcEwRi+TKpMlxAQObHDQ56KawURgyAf6jtIY046fJ5tIv3zDe/LEIubckAO8fj6JnAxLdmWkUfNyulQ2iKdEw==}
engines: {node: '>=14.0.0'}
@@ -7804,6 +7867,24 @@ packages:
sass:
optional: true
next@14.2.4:
resolution: {integrity: sha512-R8/V7vugY+822rsQGQCjoLhMuC9oFj9SOi4Cl4b2wjDrseD0LRZ10W7R6Czo4w9ZznVSshKjuIomsRjvm9EKJQ==}
engines: {node: '>=18.17.0'}
hasBin: true
peerDependencies:
'@opentelemetry/api': ^1.1.0
'@playwright/test': ^1.41.2
react: ^18.2.0
react-dom: ^18.2.0
sass: ^1.3.0
peerDependenciesMeta:
'@opentelemetry/api':
optional: true
'@playwright/test':
optional: true
sass:
optional: true
next@14.3.0-canary.51:
resolution: {integrity: sha512-KfcGnNBQH9SofRSvv8qQRG1K0dfyi/8PhYzyuUwKnkQH8+F+2RXHVQ6ooEbiEtw9J6fDyRHop7BTbzUF9mkgkw==}
engines: {node: '>=18.17.0'}
@@ -11013,7 +11094,7 @@ snapshots:
dependencies:
'@aws-crypto/util': 5.2.0
'@aws-sdk/types': 3.598.0
tslib: 2.6.2
tslib: 2.6.3
'@aws-crypto/sha256-browser@5.2.0':
dependencies:
@@ -11033,7 +11114,7 @@ snapshots:
'@aws-crypto/supports-web-crypto@5.2.0':
dependencies:
tslib: 2.6.2
tslib: 2.6.3
'@aws-crypto/util@5.2.0':
dependencies:
@@ -11045,10 +11126,10 @@ snapshots:
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
'@aws-sdk/client-sso-oidc': 3.600.0(@aws-sdk/client-sts@3.600.0)
'@aws-sdk/client-sts': 3.600.0
'@aws-sdk/client-sso-oidc': 3.600.0
'@aws-sdk/client-sts': 3.600.0(@aws-sdk/client-sso-oidc@3.600.0)
'@aws-sdk/core': 3.598.0
'@aws-sdk/credential-provider-node': 3.600.0(@aws-sdk/client-sso-oidc@3.600.0(@aws-sdk/client-sts@3.600.0))(@aws-sdk/client-sts@3.600.0)
'@aws-sdk/credential-provider-node': 3.600.0(@aws-sdk/client-sso-oidc@3.600.0)(@aws-sdk/client-sts@3.600.0(@aws-sdk/client-sso-oidc@3.600.0))
'@aws-sdk/middleware-host-header': 3.598.0
'@aws-sdk/middleware-logger': 3.598.0
'@aws-sdk/middleware-recursion-detection': 3.598.0
@@ -11091,13 +11172,13 @@ snapshots:
transitivePeerDependencies:
- aws-crt
'@aws-sdk/client-sso-oidc@3.600.0(@aws-sdk/client-sts@3.600.0)':
'@aws-sdk/client-sso-oidc@3.600.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
'@aws-sdk/client-sts': 3.600.0
'@aws-sdk/client-sts': 3.600.0(@aws-sdk/client-sso-oidc@3.600.0)
'@aws-sdk/core': 3.598.0
'@aws-sdk/credential-provider-node': 3.600.0(@aws-sdk/client-sso-oidc@3.600.0(@aws-sdk/client-sts@3.600.0))(@aws-sdk/client-sts@3.600.0)
'@aws-sdk/credential-provider-node': 3.600.0(@aws-sdk/client-sso-oidc@3.600.0)(@aws-sdk/client-sts@3.600.0(@aws-sdk/client-sso-oidc@3.600.0))
'@aws-sdk/middleware-host-header': 3.598.0
'@aws-sdk/middleware-logger': 3.598.0
'@aws-sdk/middleware-recursion-detection': 3.598.0
@@ -11134,7 +11215,6 @@ snapshots:
'@smithy/util-utf8': 3.0.0
tslib: 2.6.2
transitivePeerDependencies:
- '@aws-sdk/client-sts'
- aws-crt
'@aws-sdk/client-sso@3.598.0':
@@ -11176,17 +11256,17 @@ snapshots:
'@smithy/util-middleware': 3.0.2
'@smithy/util-retry': 3.0.2
'@smithy/util-utf8': 3.0.0
tslib: 2.6.2
tslib: 2.6.3
transitivePeerDependencies:
- aws-crt
'@aws-sdk/client-sts@3.600.0':
'@aws-sdk/client-sts@3.600.0(@aws-sdk/client-sso-oidc@3.600.0)':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
'@aws-sdk/client-sso-oidc': 3.600.0(@aws-sdk/client-sts@3.600.0)
'@aws-sdk/client-sso-oidc': 3.600.0
'@aws-sdk/core': 3.598.0
'@aws-sdk/credential-provider-node': 3.600.0(@aws-sdk/client-sso-oidc@3.600.0(@aws-sdk/client-sts@3.600.0))(@aws-sdk/client-sts@3.600.0)
'@aws-sdk/credential-provider-node': 3.600.0(@aws-sdk/client-sso-oidc@3.600.0)(@aws-sdk/client-sts@3.600.0(@aws-sdk/client-sso-oidc@3.600.0))
'@aws-sdk/middleware-host-header': 3.598.0
'@aws-sdk/middleware-logger': 3.598.0
'@aws-sdk/middleware-recursion-detection': 3.598.0
@@ -11223,6 +11303,7 @@ snapshots:
'@smithy/util-utf8': 3.0.0
tslib: 2.6.2
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- aws-crt
'@aws-sdk/core@3.598.0':
@@ -11240,7 +11321,7 @@ snapshots:
'@aws-sdk/types': 3.598.0
'@smithy/property-provider': 3.1.2
'@smithy/types': 3.2.0
tslib: 2.6.2
tslib: 2.6.3
'@aws-sdk/credential-provider-http@3.598.0':
dependencies:
@@ -11252,34 +11333,34 @@ snapshots:
'@smithy/smithy-client': 3.1.4
'@smithy/types': 3.2.0
'@smithy/util-stream': 3.0.4
tslib: 2.6.2
tslib: 2.6.3
'@aws-sdk/credential-provider-ini@3.598.0(@aws-sdk/client-sso-oidc@3.600.0(@aws-sdk/client-sts@3.600.0))(@aws-sdk/client-sts@3.600.0)':
'@aws-sdk/credential-provider-ini@3.598.0(@aws-sdk/client-sso-oidc@3.600.0)(@aws-sdk/client-sts@3.600.0(@aws-sdk/client-sso-oidc@3.600.0))':
dependencies:
'@aws-sdk/client-sts': 3.600.0
'@aws-sdk/client-sts': 3.600.0(@aws-sdk/client-sso-oidc@3.600.0)
'@aws-sdk/credential-provider-env': 3.598.0
'@aws-sdk/credential-provider-http': 3.598.0
'@aws-sdk/credential-provider-process': 3.598.0
'@aws-sdk/credential-provider-sso': 3.598.0(@aws-sdk/client-sso-oidc@3.600.0(@aws-sdk/client-sts@3.600.0))
'@aws-sdk/credential-provider-web-identity': 3.598.0(@aws-sdk/client-sts@3.600.0)
'@aws-sdk/credential-provider-sso': 3.598.0(@aws-sdk/client-sso-oidc@3.600.0)
'@aws-sdk/credential-provider-web-identity': 3.598.0(@aws-sdk/client-sts@3.600.0(@aws-sdk/client-sso-oidc@3.600.0))
'@aws-sdk/types': 3.598.0
'@smithy/credential-provider-imds': 3.1.2
'@smithy/property-provider': 3.1.2
'@smithy/shared-ini-file-loader': 3.1.2
'@smithy/types': 3.2.0
tslib: 2.6.2
tslib: 2.6.3
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- aws-crt
'@aws-sdk/credential-provider-node@3.600.0(@aws-sdk/client-sso-oidc@3.600.0(@aws-sdk/client-sts@3.600.0))(@aws-sdk/client-sts@3.600.0)':
'@aws-sdk/credential-provider-node@3.600.0(@aws-sdk/client-sso-oidc@3.600.0)(@aws-sdk/client-sts@3.600.0(@aws-sdk/client-sso-oidc@3.600.0))':
dependencies:
'@aws-sdk/credential-provider-env': 3.598.0
'@aws-sdk/credential-provider-http': 3.598.0
'@aws-sdk/credential-provider-ini': 3.598.0(@aws-sdk/client-sso-oidc@3.600.0(@aws-sdk/client-sts@3.600.0))(@aws-sdk/client-sts@3.600.0)
'@aws-sdk/credential-provider-ini': 3.598.0(@aws-sdk/client-sso-oidc@3.600.0)(@aws-sdk/client-sts@3.600.0(@aws-sdk/client-sso-oidc@3.600.0))
'@aws-sdk/credential-provider-process': 3.598.0
'@aws-sdk/credential-provider-sso': 3.598.0(@aws-sdk/client-sso-oidc@3.600.0(@aws-sdk/client-sts@3.600.0))
'@aws-sdk/credential-provider-web-identity': 3.598.0(@aws-sdk/client-sts@3.600.0)
'@aws-sdk/credential-provider-sso': 3.598.0(@aws-sdk/client-sso-oidc@3.600.0)
'@aws-sdk/credential-provider-web-identity': 3.598.0(@aws-sdk/client-sts@3.600.0(@aws-sdk/client-sso-oidc@3.600.0))
'@aws-sdk/types': 3.598.0
'@smithy/credential-provider-imds': 3.1.2
'@smithy/property-provider': 3.1.2
@@ -11297,28 +11378,28 @@ snapshots:
'@smithy/property-provider': 3.1.2
'@smithy/shared-ini-file-loader': 3.1.2
'@smithy/types': 3.2.0
tslib: 2.6.2
tslib: 2.6.3
'@aws-sdk/credential-provider-sso@3.598.0(@aws-sdk/client-sso-oidc@3.600.0(@aws-sdk/client-sts@3.600.0))':
'@aws-sdk/credential-provider-sso@3.598.0(@aws-sdk/client-sso-oidc@3.600.0)':
dependencies:
'@aws-sdk/client-sso': 3.598.0
'@aws-sdk/token-providers': 3.598.0(@aws-sdk/client-sso-oidc@3.600.0(@aws-sdk/client-sts@3.600.0))
'@aws-sdk/token-providers': 3.598.0(@aws-sdk/client-sso-oidc@3.600.0)
'@aws-sdk/types': 3.598.0
'@smithy/property-provider': 3.1.2
'@smithy/shared-ini-file-loader': 3.1.2
'@smithy/types': 3.2.0
tslib: 2.6.2
tslib: 2.6.3
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- aws-crt
'@aws-sdk/credential-provider-web-identity@3.598.0(@aws-sdk/client-sts@3.600.0)':
'@aws-sdk/credential-provider-web-identity@3.598.0(@aws-sdk/client-sts@3.600.0(@aws-sdk/client-sso-oidc@3.600.0))':
dependencies:
'@aws-sdk/client-sts': 3.600.0
'@aws-sdk/client-sts': 3.600.0(@aws-sdk/client-sso-oidc@3.600.0)
'@aws-sdk/types': 3.598.0
'@smithy/property-provider': 3.1.2
'@smithy/types': 3.2.0
tslib: 2.6.2
tslib: 2.6.3
'@aws-sdk/middleware-host-header@3.598.0':
dependencies:
@@ -11357,14 +11438,14 @@ snapshots:
'@smithy/util-middleware': 3.0.2
tslib: 2.6.2
'@aws-sdk/token-providers@3.598.0(@aws-sdk/client-sso-oidc@3.600.0(@aws-sdk/client-sts@3.600.0))':
'@aws-sdk/token-providers@3.598.0(@aws-sdk/client-sso-oidc@3.600.0)':
dependencies:
'@aws-sdk/client-sso-oidc': 3.600.0(@aws-sdk/client-sts@3.600.0)
'@aws-sdk/client-sso-oidc': 3.600.0
'@aws-sdk/types': 3.598.0
'@smithy/property-provider': 3.1.2
'@smithy/shared-ini-file-loader': 3.1.2
'@smithy/types': 3.2.0
tslib: 2.6.2
tslib: 2.6.3
'@aws-sdk/types@3.567.0':
dependencies:
@@ -11385,7 +11466,7 @@ snapshots:
'@aws-sdk/util-locate-window@3.568.0':
dependencies:
tslib: 2.6.2
tslib: 2.6.3
'@aws-sdk/util-user-agent-browser@3.598.0':
dependencies:
@@ -13721,6 +13802,8 @@ snapshots:
'@next/env@14.2.3': {}
'@next/env@14.2.4': {}
'@next/env@14.3.0-canary.51': {}
'@next/eslint-plugin-next@14.2.3':
@@ -13734,54 +13817,81 @@ snapshots:
'@next/swc-darwin-arm64@14.2.3':
optional: true
'@next/swc-darwin-arm64@14.2.4':
optional: true
'@next/swc-darwin-arm64@14.3.0-canary.51':
optional: true
'@next/swc-darwin-x64@14.2.3':
optional: true
'@next/swc-darwin-x64@14.2.4':
optional: true
'@next/swc-darwin-x64@14.3.0-canary.51':
optional: true
'@next/swc-linux-arm64-gnu@14.2.3':
optional: true
'@next/swc-linux-arm64-gnu@14.2.4':
optional: true
'@next/swc-linux-arm64-gnu@14.3.0-canary.51':
optional: true
'@next/swc-linux-arm64-musl@14.2.3':
optional: true
'@next/swc-linux-arm64-musl@14.2.4':
optional: true
'@next/swc-linux-arm64-musl@14.3.0-canary.51':
optional: true
'@next/swc-linux-x64-gnu@14.2.3':
optional: true
'@next/swc-linux-x64-gnu@14.2.4':
optional: true
'@next/swc-linux-x64-gnu@14.3.0-canary.51':
optional: true
'@next/swc-linux-x64-musl@14.2.3':
optional: true
'@next/swc-linux-x64-musl@14.2.4':
optional: true
'@next/swc-linux-x64-musl@14.3.0-canary.51':
optional: true
'@next/swc-win32-arm64-msvc@14.2.3':
optional: true
'@next/swc-win32-arm64-msvc@14.2.4':
optional: true
'@next/swc-win32-arm64-msvc@14.3.0-canary.51':
optional: true
'@next/swc-win32-ia32-msvc@14.2.3':
optional: true
'@next/swc-win32-ia32-msvc@14.2.4':
optional: true
'@next/swc-win32-ia32-msvc@14.3.0-canary.51':
optional: true
'@next/swc-win32-x64-msvc@14.2.3':
optional: true
'@next/swc-win32-x64-msvc@14.2.4':
optional: true
'@next/swc-win32-x64-msvc@14.3.0-canary.51':
optional: true
@@ -14001,7 +14111,7 @@ snapshots:
'@smithy/abort-controller@3.1.0':
dependencies:
'@smithy/types': 3.2.0
tslib: 2.6.2
tslib: 2.6.3
'@smithy/config-resolver@3.0.3':
dependencies:
@@ -14028,14 +14138,14 @@ snapshots:
'@smithy/property-provider': 3.1.2
'@smithy/types': 3.2.0
'@smithy/url-parser': 3.0.2
tslib: 2.6.2
tslib: 2.6.3
'@smithy/eventstream-codec@3.1.1':
dependencies:
'@aws-crypto/crc32': 5.2.0
'@smithy/types': 3.2.0
'@smithy/util-hex-encoding': 3.0.0
tslib: 2.6.2
tslib: 2.6.3
'@smithy/eventstream-serde-browser@3.0.3':
dependencies:
@@ -14058,7 +14168,7 @@ snapshots:
dependencies:
'@smithy/eventstream-codec': 3.1.1
'@smithy/types': 3.2.0
tslib: 2.6.2
tslib: 2.6.3
'@smithy/fetch-http-handler@3.1.0':
dependencies:
@@ -14082,11 +14192,11 @@ snapshots:
'@smithy/is-array-buffer@2.2.0':
dependencies:
tslib: 2.6.2
tslib: 2.6.3
'@smithy/is-array-buffer@3.0.0':
dependencies:
tslib: 2.6.2
tslib: 2.6.3
'@smithy/middleware-content-length@3.0.2':
dependencies:
@@ -14144,7 +14254,7 @@ snapshots:
'@smithy/property-provider@3.1.2':
dependencies:
'@smithy/types': 3.2.0
tslib: 2.6.2
tslib: 2.6.3
'@smithy/protocol-http@4.0.2':
dependencies:
@@ -14155,12 +14265,12 @@ snapshots:
dependencies:
'@smithy/types': 3.2.0
'@smithy/util-uri-escape': 3.0.0
tslib: 2.6.2
tslib: 2.6.3
'@smithy/querystring-parser@3.0.2':
dependencies:
'@smithy/types': 3.2.0
tslib: 2.6.2
tslib: 2.6.3
'@smithy/service-error-classification@3.0.2':
dependencies:
@@ -14169,7 +14279,7 @@ snapshots:
'@smithy/shared-ini-file-loader@3.1.2':
dependencies:
'@smithy/types': 3.2.0
tslib: 2.6.2
tslib: 2.6.3
'@smithy/signature-v4@3.1.1':
dependencies:
@@ -14179,7 +14289,7 @@ snapshots:
'@smithy/util-middleware': 3.0.2
'@smithy/util-uri-escape': 3.0.0
'@smithy/util-utf8': 3.0.0
tslib: 2.6.2
tslib: 2.6.3
'@smithy/smithy-client@3.1.4':
dependencies:
@@ -14192,7 +14302,7 @@ snapshots:
'@smithy/types@2.12.0':
dependencies:
tslib: 2.6.2
tslib: 2.6.3
'@smithy/types@3.2.0':
dependencies:
@@ -14221,16 +14331,16 @@ snapshots:
'@smithy/util-buffer-from@2.2.0':
dependencies:
'@smithy/is-array-buffer': 2.2.0
tslib: 2.6.2
tslib: 2.6.3
'@smithy/util-buffer-from@3.0.0':
dependencies:
'@smithy/is-array-buffer': 3.0.0
tslib: 2.6.2
tslib: 2.6.3
'@smithy/util-config-provider@3.0.0':
dependencies:
tslib: 2.6.2
tslib: 2.6.3
'@smithy/util-defaults-mode-browser@3.0.6':
dependencies:
@@ -14258,7 +14368,7 @@ snapshots:
'@smithy/util-hex-encoding@3.0.0':
dependencies:
tslib: 2.6.2
tslib: 2.6.3
'@smithy/util-middleware@3.0.2':
dependencies:
@@ -14284,12 +14394,12 @@ snapshots:
'@smithy/util-uri-escape@3.0.0':
dependencies:
tslib: 2.6.2
tslib: 2.6.3
'@smithy/util-utf8@2.3.0':
dependencies:
'@smithy/util-buffer-from': 2.2.0
tslib: 2.6.2
tslib: 2.6.3
'@smithy/util-utf8@3.0.0':
dependencies:
@@ -14507,7 +14617,7 @@ snapshots:
'@swc/helpers@0.5.5':
dependencies:
'@swc/counter': 0.1.3
tslib: 2.6.2
tslib: 2.6.3
'@swc/types@0.1.8':
dependencies:
@@ -15827,7 +15937,7 @@ snapshots:
camel-case@4.1.2:
dependencies:
pascal-case: 3.1.2
tslib: 2.6.2
tslib: 2.6.3
camelcase-css@2.0.1: {}
@@ -15867,7 +15977,7 @@ snapshots:
capnp-ts@0.7.0:
dependencies:
debug: 4.3.4
tslib: 2.6.2
tslib: 2.6.3
transitivePeerDependencies:
- supports-color
@@ -16672,7 +16782,7 @@ snapshots:
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
tslib: 2.6.2
tslib: 2.6.3
dot-prop@6.0.1:
dependencies:
@@ -17897,6 +18007,19 @@ snapshots:
section-matter: 1.0.0
strip-bom-string: 1.0.0
groq-sdk@0.5.0(encoding@0.1.13):
dependencies:
'@types/node': 18.19.33
'@types/node-fetch': 2.6.11
abort-controller: 3.0.0
agentkeepalive: 4.5.0
form-data-encoder: 1.7.2
formdata-node: 4.4.1
node-fetch: 2.7.0(encoding@0.1.13)
web-streams-polyfill: 3.3.3
transitivePeerDependencies:
- encoding
gtoken@7.1.0(encoding@0.1.13):
dependencies:
gaxios: 6.5.0(encoding@0.1.13)
@@ -18854,7 +18977,7 @@ snapshots:
lower-case@2.0.2:
dependencies:
tslib: 2.6.2
tslib: 2.6.3
lowercase-keys@2.0.0: {}
@@ -19643,31 +19766,6 @@ snapshots:
neo-async@2.6.2: {}
next@14.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@next/env': 14.2.3
'@swc/helpers': 0.5.5
busboy: 1.6.0
caniuse-lite: 1.0.30001617
graceful-fs: 4.2.11
postcss: 8.4.31
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
styled-jsx: 5.1.1(react@18.3.1)
optionalDependencies:
'@next/swc-darwin-arm64': 14.2.3
'@next/swc-darwin-x64': 14.2.3
'@next/swc-linux-arm64-gnu': 14.2.3
'@next/swc-linux-arm64-musl': 14.2.3
'@next/swc-linux-x64-gnu': 14.2.3
'@next/swc-linux-x64-musl': 14.2.3
'@next/swc-win32-arm64-msvc': 14.2.3
'@next/swc-win32-ia32-msvc': 14.2.3
'@next/swc-win32-x64-msvc': 14.2.3
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
next@14.2.3(react-dom@19.0.0-canary-e3ebcd54b-20240405(react@19.0.0-canary-e3ebcd54b-20240405))(react@19.0.0-canary-e3ebcd54b-20240405):
dependencies:
'@next/env': 14.2.3
@@ -19693,6 +19791,31 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
next@14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@next/env': 14.2.4
'@swc/helpers': 0.5.5
busboy: 1.6.0
caniuse-lite: 1.0.30001617
graceful-fs: 4.2.11
postcss: 8.4.31
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
styled-jsx: 5.1.1(react@18.3.1)
optionalDependencies:
'@next/swc-darwin-arm64': 14.2.4
'@next/swc-darwin-x64': 14.2.4
'@next/swc-linux-arm64-gnu': 14.2.4
'@next/swc-linux-arm64-musl': 14.2.4
'@next/swc-linux-x64-gnu': 14.2.4
'@next/swc-linux-x64-musl': 14.2.4
'@next/swc-win32-arm64-msvc': 14.2.4
'@next/swc-win32-ia32-msvc': 14.2.4
'@next/swc-win32-x64-msvc': 14.2.4
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
next@14.3.0-canary.51(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@next/env': 14.3.0-canary.51
@@ -19728,7 +19851,7 @@ snapshots:
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
tslib: 2.6.2
tslib: 2.6.3
node-abi@3.62.0:
dependencies:
@@ -20069,7 +20192,7 @@ snapshots:
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
tslib: 2.6.2
tslib: 2.6.3
parent-module@1.0.1:
dependencies:
@@ -20120,7 +20243,7 @@ snapshots:
pascal-case@3.1.2:
dependencies:
no-case: 3.0.4
tslib: 2.6.2
tslib: 2.6.3
path-exists@3.0.0: {}
@@ -21595,7 +21718,7 @@ snapshots:
snake-case@3.0.4:
dependencies:
dot-case: 3.0.4
tslib: 2.6.2
tslib: 2.6.3
sockjs@0.3.24:
dependencies:
@@ -22331,8 +22454,7 @@ snapshots:
tslib@2.6.2: {}
tslib@2.6.3:
optional: true
tslib@2.6.3: {}
tsup@8.1.0(@swc/core@1.6.3(@swc/helpers@0.5.11))(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.6.3(@swc/helpers@0.5.11))(@types/node@20.14.2)(typescript@5.5.2))(typescript@5.5.2):
dependencies: