Skip to content

Commit 52c6f5c

Browse files
authored
MCPs (#91)
1 parent 78dcd5a commit 52c6f5c

26 files changed

+2228
-245
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
PUBLIC_ENABLE_MCP=
12
HYPERBOLIC_API_KEY=
23
COHERE_API_KEY=
34
TOGETHER_API_KEY=
@@ -9,4 +10,3 @@ FAL_API_KEY=
910
HF_TOKEN=
1011

1112
MODELS_FILE=
12-

eslint.config.mts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ export default ts.config(
6666
"object-shorthand": ["error", "always"],
6767
"svelte/no-at-html-tags": "off",
6868
"svelte/require-each-key": "off",
69+
"svelte/no-navigation-without-resolve": "off",
6970
"local/enforce-ext": [
7071
"error",
7172
{
@@ -92,6 +93,7 @@ export default ts.config(
9293
"**/package-lock.json",
9394
"**/yarn.lock",
9495
"context_length.json",
96+
".claude/**/*",
9597
],
9698
},
9799
{

package.json

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
"lint": "prettier . --check . && eslint src/",
1313
"format": "prettier . --write .",
1414
"clean": "rm -rf ./node_modules/ && rm -rf ./.svelte-kit/ && ni && echo 'Project cleaned!'",
15+
"update-ctx-length": "jiti scripts/update-ctx-length.ts",
1516
"test:unit": "vitest --browser.headless",
16-
"test": "npm run test:unit",
17+
"test": "npm run test:unit -- --run",
1718
"test:e2e": "playwright test"
1819
},
1920
"devDependencies": {
@@ -30,10 +31,10 @@
3031
"@playwright/test": "^1.49.1",
3132
"@ryoppippi/unplugin-typia": "^1.0.0",
3233
"@samchon/openapi": "^3.0.0",
33-
"@sveltejs/adapter-auto": "^3.2.2",
34-
"@sveltejs/adapter-node": "^5.2.0",
35-
"@sveltejs/kit": "^2.5.27",
36-
"@sveltejs/vite-plugin-svelte": "^4.0.0",
34+
"@sveltejs/adapter-auto": "^3.3.1",
35+
"@sveltejs/adapter-node": "^5.3.1",
36+
"@sveltejs/kit": "^2.37.1",
37+
"@sveltejs/vite-plugin-svelte": "^4.0.4",
3738
"@tailwindcss/container-queries": "^0.1.1",
3839
"@tailwindcss/postcss": "^4.0.9",
3940
"@testing-library/jest-dom": "^6.6.3",
@@ -59,8 +60,8 @@
5960
"prettier-plugin-tailwindcss": "^0.6.11",
6061
"runed": "^0.25.0",
6162
"shiki": "^3.4.0",
62-
"svelte": "^5.36.16",
63-
"svelte-check": "^4.0.0",
63+
"svelte": "^5.38.7",
64+
"svelte-check": "^4.3.1",
6465
"tailwind-merge": "^3.0.2",
6566
"tailwindcss": "^4.0.9",
6667
"ts-patch": "^3.3.0",
@@ -74,11 +75,13 @@
7475
},
7576
"type": "module",
7677
"dependencies": {
78+
"@modelcontextprotocol/sdk": "^1.13.3",
7779
"@tailwindcss/typography": "^0.5.16",
7880
"dequal": "^2.0.3",
79-
"eslint-plugin-svelte": "^3.11.0",
81+
"eslint-plugin-svelte": "^3.12.2",
8082
"marked": "^16.1.2",
8183
"remult": "^3.0.2",
84+
"tailwindcss-spring": "^1.0.1",
8285
"typia": "^8.0.0"
8386
},
8487
"pnpm": {

0 commit comments

Comments
 (0)