- Removed `react-is` and `require-in-the-middle` overrides from `package.json` and `pnpm-lock.yaml`. - Updated various dependencies across multiple packages, including `@types/node` to `^24.5.2`, `react-hook-form` to `^7.63.0`, and `@ai-sdk/openai` to `^2.0.32`. - Deleted the `loading.tsx` component from the admin accounts directory, streamlining the codebase. - Adjusted `playwright.config.ts` to use a configurable number of workers for CI environments, enhancing test performance. - Improved error handling in user ban and reactivation dialogs to provide clearer feedback to the admin user.
35 lines
807 B
JSON
35 lines
807 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"
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"format": "prettier --check \"**/*.{mjs,ts,md,json}\"",
|
|
"build": "tsc && chmod 755 build/index.js",
|
|
"build:watch": "tsc --watch",
|
|
"mcp": "node build/index.js"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@modelcontextprotocol/sdk": "1.18.1",
|
|
"@types/node": "^24.5.2",
|
|
"postgres": "3.4.7",
|
|
"zod": "^3.25.74"
|
|
},
|
|
"prettier": "@kit/prettier-config"
|
|
}
|