Skip to content
Merged

MCPs #91

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
PUBLIC_ENABLE_MCP=
HYPERBOLIC_API_KEY=
COHERE_API_KEY=
TOGETHER_API_KEY=
Expand All @@ -9,4 +10,3 @@ FAL_API_KEY=
HF_TOKEN=

MODELS_FILE=

2 changes: 2 additions & 0 deletions eslint.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ export default ts.config(
"object-shorthand": ["error", "always"],
"svelte/no-at-html-tags": "off",
"svelte/require-each-key": "off",
"svelte/no-navigation-without-resolve": "off",
"local/enforce-ext": [
"error",
{
Expand All @@ -92,6 +93,7 @@ export default ts.config(
"**/package-lock.json",
"**/yarn.lock",
"context_length.json",
".claude/**/*",
],
},
{
Expand Down
19 changes: 11 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
"lint": "prettier . --check . && eslint src/",
"format": "prettier . --write .",
"clean": "rm -rf ./node_modules/ && rm -rf ./.svelte-kit/ && ni && echo 'Project cleaned!'",
"update-ctx-length": "jiti scripts/update-ctx-length.ts",
"test:unit": "vitest --browser.headless",
"test": "npm run test:unit",
"test": "npm run test:unit -- --run",
"test:e2e": "playwright test"
},
"devDependencies": {
Expand All @@ -30,10 +31,10 @@
"@playwright/test": "^1.49.1",
"@ryoppippi/unplugin-typia": "^1.0.0",
"@samchon/openapi": "^3.0.0",
"@sveltejs/adapter-auto": "^3.2.2",
"@sveltejs/adapter-node": "^5.2.0",
"@sveltejs/kit": "^2.5.27",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/adapter-node": "^5.3.1",
"@sveltejs/kit": "^2.37.1",
"@sveltejs/vite-plugin-svelte": "^4.0.4",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/postcss": "^4.0.9",
"@testing-library/jest-dom": "^6.6.3",
Expand All @@ -59,8 +60,8 @@
"prettier-plugin-tailwindcss": "^0.6.11",
"runed": "^0.25.0",
"shiki": "^3.4.0",
"svelte": "^5.36.16",
"svelte-check": "^4.0.0",
"svelte": "^5.38.7",
"svelte-check": "^4.3.1",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.9",
"ts-patch": "^3.3.0",
Expand All @@ -74,11 +75,13 @@
},
"type": "module",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.3",
"@tailwindcss/typography": "^0.5.16",
"dequal": "^2.0.3",
"eslint-plugin-svelte": "^3.11.0",
"eslint-plugin-svelte": "^3.12.2",
"marked": "^16.1.2",
"remult": "^3.0.2",
"tailwindcss-spring": "^1.0.1",
"typia": "^8.0.0"
},
"pnpm": {
Expand Down
Loading
Loading