promptcoder-cli
Version:
AI-powered code generation CLI tool with conversation persistence, file tools, and LLM integration
74 lines (73 loc) • 1.68 kB
JSON
{
"name": "promptcoder-cli",
"version": "1.0.0",
"description": "AI-powered code generation CLI tool with conversation persistence, file tools, and LLM integration",
"main": "dist/index.js",
"bin": {
"promptcoder": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
},
"preferGlobal": true,
"dependencies": {
"@anthropic-ai/sdk": "^0.20.0",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"dotenv": "^16.3.0",
"fs-extra": "^11.1.0",
"glob": "^10.3.0",
"inquirer": "^9.2.0",
"openai": "^4.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.0",
"@types/glob": "^8.1.0",
"@types/inquirer": "^9.0.0",
"@types/node": "^20.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"keywords": [
"cli",
"llm",
"ai",
"code-generation",
"openai",
"anthropic",
"claude",
"gpt",
"coding-assistant",
"developer-tools",
"automation",
"conversation",
"file-tools",
"diff-editor"
],
"author": {
"name": "Vladimir Petrov",
"email": "vlad@vasoftware.co.uk"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vpetroff/prompt-coder.git"
},
"bugs": {
"url": "https://github.com/vpetroff/prompt-coder/issues"
},
"homepage": "https://github.com/vpetroff/prompt-coder#readme"
}