UNPKG

mini-claude-code

Version:

Advanced AI-powered coding assistant with streaming responses, context memory, intelligent auto-completion, error handling, test generation, and task planning

51 lines (50 loc) 1.41 kB
{ "name": "mini-claude-code", "version": "3.0.0", "description": "Advanced AI-powered coding assistant with streaming responses, context memory, intelligent auto-completion, error handling, test generation, and task planning", "main": "index.js", "bin": { "mini-claude": "./bin/cli.js" }, "scripts": { "start": "node bin/cli.js", "dev": "node --watch bin/cli.js", "test": "node test/test.js", "test:streaming": "node test/streaming-test.js", "test:memory": "node test/context-memory-test.js", "test:completion": "node test/auto-completion-test.js", "test:error-handling": "node test/error-handling-test.js", "test:test-generation": "node test/test-generation-test.js", "test:task-planning": "node test/task-planning-test.js", "demo": "node test/complete-demo.js" }, "keywords": [ "ai", "coding-assistant", "cli", "automation", "code-generation", "streaming", "context-memory", "auto-completion", "error-handling", "test-generation", "task-planning", "intelligent-assistant" ], "author": "Mini Claude Code Team", "license": "MIT", "dependencies": { "chalk": "^4.1.2", "commander": "^9.4.1", "fs-extra": "^11.1.1", "glob": "^8.1.0", "inquirer": "^8.2.5", "node-fetch": "^2.6.7", "openai": "^5.9.0", "ora": "^5.4.1" }, "engines": { "node": ">=14.0.0" } }