package.json•1.28 kB
{
"name": "@kj455/mcp-kibela",
"version": "0.3.1",
"description": "MCP server implementation that integrates with Kibela API",
"type": "module",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/kj455/mcp-kibela.git"
},
"files": [
"dist",
"README.md"
],
"bin": {
"mcp-kibela": "./dist/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts --dts --format esm",
"postbuild": "shx chmod +x dist/*.js",
"check": "tsc --noEmit",
"build:watch": "npm run build -- --watch",
"prepublishOnly": "npm run build",
"format": "prettier --write .",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"@modelcontextprotocol/sdk": "^1.5.0",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"zod": "^3.22.4"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@types/node": "^22.13.5",
"dotenv": "^16.4.7",
"prettier": "^3.4.1",
"shx": "^0.3.4",
"tsup": "^8.3.5",
"typescript": "^5.3.3"
}
}