package.json•1.25 kB
{
"name": "cursor-pro-limits-mcp",
"version": "1.0.1",
"description": "MCP server for monitoring Cursor Pro usage limits and API quotas",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cursor-pro-limits-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"cursor",
"pro",
"limits",
"monitoring",
"api",
"quotas"
],
"author": "Mehmet Fiskindal",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.2",
"prettier": "^3.0.0",
"typescript": "^5.0.0"
}
}