Skip to content

Commit 0cfb3fa

Browse files
authored
Merge branch 'main' into chenderrick/etsyapi-implementation
2 parents 403e57f + 588d2b5 commit 0cfb3fa

File tree

200 files changed

+3666
-939
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

200 files changed

+3666
-939
lines changed

.npmrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
public-hoist-pattern[]=*eslint*
2-
public-hoist-pattern[]=*prettier*
2+
public-hoist-pattern[]=*prettier*
3+
public-hoist-pattern[]=@shikijs/*

next.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ const config = {
1919
},
2020
],
2121
},
22+
experimental: {
23+
authInterrupts: true,
24+
},
25+
serverExternalPackages: ["twitter-api-v2"],
2226
};
2327

2428
export default config;

package.json

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"preview": "next build && next start",
2222
"start": "next start",
2323
"typecheck": "tsc --noEmit",
24-
"ci": "pnpm run format:check && pnpm run check && pnpm run build-pure"
24+
"ci": "pnpm run format:check && pnpm run check && pnpm run build-pure",
25+
"shiki:generate": "pnpm dlx tsx src/components/ui/code/codegen.ts && pnpm format:write"
2526
},
2627
"dependencies": {
2728
"@ai-sdk/anthropic": "^1.2.12",
@@ -35,9 +36,13 @@
3536
"@ai-sdk/react": "^1.2.12",
3637
"@ai-sdk/xai": "^1.2.16",
3738
"@auth/prisma-adapter": "^2.7.2",
39+
"@discordjs/rest": "^2.5.1",
3840
"@e2b/code-interpreter": "^1.5.1",
3941
"@hookform/resolvers": "^5.2.0",
40-
"@icons-pack/react-simple-icons": "^13.1.0",
42+
"@icons-pack/react-simple-icons": "^13.7.0",
43+
"@llm-ui/code": "^0.13.3",
44+
"@llm-ui/markdown": "^0.13.3",
45+
"@llm-ui/react": "^0.13.3",
4146
"@modelcontextprotocol/sdk": "^1.12.0",
4247
"@notionhq/client": "^3.1.3",
4348
"@openrouter/ai-sdk-provider": "^0.7.2",
@@ -78,11 +83,15 @@
7883
"cookies-next": "^6.0.0",
7984
"date-fns": "^4.1.0",
8085
"etsy-ts": "^4.2.0",
86+
"discord-api-types": "^0.38.17",
8187
"exa-js": "^1.8.8",
8288
"fast-deep-equal": "^3.1.3",
8389
"googleapis": "^150.0.1",
90+
"hast-util-to-jsx-runtime": "^2.3.6",
91+
"html-react-parser": "^5.2.6",
8492
"lottie-react": "^2.4.1",
8593
"lucide-react": "^0.513.0",
94+
"lumaai": "^1.16.0",
8695
"mem0ai": "^2.1.30",
8796
"motion": "^12.16.0",
8897
"next": "^15.2.3",
@@ -93,19 +102,19 @@
93102
"react-dom": "^19.0.0",
94103
"react-hook-form": "^7.61.1",
95104
"react-markdown": "^10.1.0",
96-
"react-syntax-highlighter": "^15.6.1",
97105
"recharts": "^2.15.3",
98106
"redis": "^5.5.6",
99107
"rehype-katex": "^7.0.1",
100108
"remark-gfm": "^4.0.1",
101109
"remark-math": "^6.0.0",
102110
"resumable-stream": "^2.2.0",
103111
"server-only": "^0.0.1",
104-
"shiki": "^3.8.1",
112+
"shiki": "^3.9.2",
105113
"sonner": "^2.0.5",
106114
"strava": "^2.3.0",
107115
"superjson": "^2.2.1",
108116
"tailwind-merge": "^3.3.0",
117+
"twitter-api-v2": "^1.24.0",
109118
"usehooks-ts": "^3.1.1",
110119
"uuid": "^11.1.0",
111120
"vaul": "^1.1.2",
@@ -117,14 +126,14 @@
117126
"@types/node": "^20.14.10",
118127
"@types/react": "^19.0.0",
119128
"@types/react-dom": "^19.0.0",
120-
"@types/react-syntax-highlighter": "^15.5.13",
121129
"dotenv-cli": "^7.4.1",
122130
"eslint": "^9.23.0",
123131
"eslint-config-next": "^15.2.3",
124132
"postcss": "^8.5.3",
125133
"prettier": "^3.5.3",
126134
"prettier-plugin-tailwindcss": "^0.6.11",
127135
"prisma": "^6.5.0",
136+
"shiki-codegen": "^3.9.2",
128137
"tailwindcss": "^4.0.15",
129138
"tsx": "^4.7.1",
130139
"tw-animate-css": "^1.3.4",

0 commit comments

Comments
 (0)