* Update AGENTS.md and CLAUDE.md for improved clarity and structure * Added MCP Server * Added missing triggers to tables that should have used them * Updated all dependencies * Fixed rare bug in React present in the Admin layout which prevents navigating to pages (sometimes...)
32 lines
730 B
JSON
32 lines
730 B
JSON
{
|
|
"name": "@kit/mcp-server",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"main": "./build/index.js",
|
|
"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",
|
|
"mcp": "node build/index.js"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@modelcontextprotocol/sdk": "1.18.0",
|
|
"@types/node": "^24.5.0",
|
|
"zod": "^3.25.74"
|
|
},
|
|
"prettier": "@kit/prettier-config"
|
|
}
|