UNPKG

rosie-cli

Version:

AI-powered command-line interface tool that uses OpenAI's API to help you interact with your computer through natural language

62 lines (61 loc) 1.52 kB
{ "name": "rosie-cli", "version": "1.2.0", "description": "AI-powered command-line interface tool that uses OpenAI's API to help you interact with your computer through natural language", "main": "dist/index.js", "bin": { "rosie": "./dist/index.js" }, "scripts": { "build": "tsc && npm run copy-assets", "start": "node dist/index.js", "dev": "ts-node src/index.ts", "test": "echo \"No tests\" && exit 0", "prepare": "npm run build", "prepublishOnly": "npm run lint", "lint": "echo \"No linting configured\" && exit 0", "version": "npm run format && git add -A src", "format": "echo \"No formatting configured\" && exit 0", "copy-assets": "node scripts/copy-assets.js" }, "keywords": [ "cli", "rosie", "ai", "assistant", "openai", "chatgpt", "command-line" ], "repository": { "type": "git", "url": "git+https://github.com/Alex-Kaff/rosie-cli/" }, "bugs": { "url": "https://github.com/Alex-Kaff/rosie-cli/issues" }, "homepage": "https://github.com/Alex-Kaff/rosie-cli/#readme", "author": "", "license": "MIT", "engines": { "node": ">=14.0.0" }, "dependencies": { "@types/node": "^22.15.3", "@types/sharp": "^0.31.1", "commander": "^13.1.0", "openai": "^4.97.0", "sharp": "^0.34.1", "typescript": "^5.8.3", "uuid": "^11.1.0" }, "devDependencies": { "ts-node": "^10.9.2" }, "files": [ "dist/**/*" ], "publishConfig": { "access": "public" } }