- Upgraded Next.js to version 16.0.1 and React to version 19.2.0. - Updated various packages including @supabase/supabase-js to 2.78.0, lucide-react to 0.548.0, and react-i18next to 16.2.3. - Adjusted @types/node version to 24.9.2 and other related dependencies. - Refactored package.json files to use PNPM catalogs for better dependency management. - Updated ESLint configurations and related plugins to the latest versions.
41 lines
1004 B
JSON
41 lines
1004 B
JSON
{
|
|
"name": "@kit/mcp-server",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"main": "./build/index.js",
|
|
"module": true,
|
|
"bin": {
|
|
"makerkit-mcp-server": "./build/index.js"
|
|
},
|
|
"exports": {
|
|
"./database": "./src/tools/database.ts",
|
|
"./components": "./src/tools/components.ts",
|
|
"./migrations": "./src/tools/migrations.ts",
|
|
"./prd-manager": "./src/tools/prd-manager.ts",
|
|
"./prompts": "./src/tools/prompts.ts",
|
|
"./scripts": "./src/tools/scripts.ts"
|
|
},
|
|
"scripts": {
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"format": "prettier --check \"**/*.{mjs,ts,md,json}\"",
|
|
"build": "tsc",
|
|
"build:watch": "tsc --watch"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@modelcontextprotocol/sdk": "1.20.2",
|
|
"@types/node": "catalog:",
|
|
"postgres": "3.4.7",
|
|
"zod": "^3.25.74"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|