package.json•1.27 kB
{
"name": "@promptz/mcp",
"version": "2.0.0",
"description": "MCP server to give developers access to prompts from promptz.dev",
"type": "module",
"author": "Christian Bonzelet",
"repository": "https://github.com/cremich/promptz-mcp",
"license": "MIT",
"bin": {
"promptz-mcp": "./build/index.js"
},
"files": [
"build"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.12.0",
"@urql/core": "^5.1.1",
"graphql": "^16.10.0",
"graphql-request": "^7.1.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.23",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"typescript": "^5.3.3"
}
}