UNPKG

@quydoan/ai-cli-toolkit

Version:

Universal toolkit for AI CLI tools - MCP server setup and command conversion

102 lines (101 loc) 2.46 kB
{ "name": "@quydoan/ai-cli-toolkit", "version": "1.3.1", "description": "Universal toolkit for AI CLI tools - MCP server setup and command conversion", "main": "dist/cli.js", "bin": { "ai-cli-toolkit": "dist/cli.js", "ait": "dist/cli.js" }, "scripts": { "build": "vite build", "prepublishOnly": "npm run build", "setup": "node dist/cli.js setup", "convert": "node dist/cli.js convert", "test": "echo \"No tests specified\" && exit 0" }, "dependencies": { "chalk": "^5.3.0", "fs-extra": "^11.2.0", "inquirer": "^9.2.12", "js-yaml": "^4.1.0", "yargs": "^18.0.0" }, "type": "module", "keywords": [ "ai-cli", "mcp", "claude-code", "github-copilot", "gemini-cli", "command-converter", "ai-toolkit", "automation", "mcp-server-setup" ], "author": "Quy Doan <quydoan@example.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/RobDoan/ai-cli-toolkit.git" }, "homepage": "https://github.com/RobDoan/ai-cli-toolkit#readme", "bugs": { "url": "https://github.com/RobDoan/ai-cli-toolkit/issues" }, "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public" }, "files": [ "dist/" ], "devDependencies": { "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^11.0.4", "@semantic-release/npm": "^12.0.2", "semantic-release": "^24.2.7", "vite": "^7.1.3" }, "release": { "branches": [ "main" ], "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/changelog", "@semantic-release/npm", [ "@semantic-release/github", { "assets": [ { "path": "commands.tar.gz", "name": "commands.tar.gz", "label": "Commands Archive" }, { "path": "ai-cli-toolkit-*.tgz", "name": "ai-cli-toolkit-${nextRelease.version}.tgz", "label": "NPM Package" } ] } ], [ "@semantic-release/git", { "assets": [ "package.json", "CHANGELOG.md" ], "message": "🔖 Release ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" } ] ] } }