@poai/mcpm-aider
Version:
Your MCP CLI Manager for aider(forked from @mcpm/cli). Helps you install/remove/search your MCP projects. You can also manage your MCP in Claude App with natural language.
162 lines (161 loc) • 4.32 kB
JSON
{
"name": "@poai/mcpm-aider",
"version": "1.2.0",
"description": "Your MCP CLI Manager for aider(forked from @mcpm/cli). Helps you install/remove/search your MCP projects. You can also manage your MCP in Claude App with natural language.",
"main": "lib/cli.js",
"types": "lib/cli.d.ts",
"files": [
"!lib/__tests__/**/*",
"lib/**/*",
"lib/python/**/*",
"bin/**/*"
],
"bin": {
"mcpm-aider": "./bin/index.js"
},
"type": "module",
"scripts": {
"build": "tsc && npm run copy-python",
"copy-python": "mkdir -p lib/python && cp -r python/* lib/python/",
"clean": "rm -rf ./lib/",
"cm": "cz",
"lint": "eslint --config .eslintrc.cjs ./src/ --fix",
"start": "tsx ./src/cli.ts",
"prepare": "husky install",
"semantic-release": "semantic-release",
"test:watch": "jest --config jest.config.cjs --watch",
"test": "jest --config jest.config.cjs",
"typecheck": "tsc --noEmit",
"release": "npm run build && npm publish --access public --scope=@poai",
"release:beta": "npm run build && npm publish --tag beta --access public --scope=@poai"
},
"repository": {
"type": "git",
"url": "https://github.com/lutzleonhardt/mcpm-aider.git"
},
"license": "AGPL-3.0-only",
"author": {
"name": "Pilots of AI (Lutz Leonhardt)",
"email": "kontakt@lutzleonhardt.de",
"url": "https://github.com/lutzleonhardt/mcpm-aider"
},
"engines": {
"node": ">=12.0"
},
"keywords": [
"aider",
"boilerplate",
"cli",
"template",
"typescript",
"vscode",
"jest",
"husky",
"commitizen",
"semantic-release",
"codecov"
],
"bugs": {
"url": "https://github.com/lutzleonhardt/mcpm-aider/issues"
},
"homepage": "https://github.com/lutzleonhardt/mcpm-aider#readme",
"contributors": [
{
"name": "MCP Club",
"url": "https://github.com/mcp-club"
}
],
"dependencies": {
"@mcpm/sdk": "^1.3.1",
"@modelcontextprotocol/sdk": "^1.4.1",
"ajv": "^8.17.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"conf": "^13.1.0",
"env-paths": "^3.0.0",
"install": "^0.13.0",
"npm": "^11.1.0",
"prompts": "^2.4.2",
"yoctocolors": "^2.1.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@swc/jest": "^0.2.37",
"@types/jest": "^27.5.2",
"@types/node": "^20.10.5",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-jest": "^27.5.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"execa": "^9.5.2",
"husky": "^8.0.3",
"jest": "^27.5.1",
"prettier": "^2.2.1",
"ts-jest": "^27.1.5",
"tsx": "^4.7.0",
"typescript": "^4.9.5"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "eslint --config .eslintrc.cjs --cache --cache-location .eslintcache --fix"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "build",
"section": "Dependencies and Other Build Updates",
"hidden": false
}
]
}
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}