UNPKG

runlog

Version:

CLI tool for uploading Claude Code conversations to runlog.io

55 lines (54 loc) 1.17 kB
{ "name": "runlog", "version": "0.10.2", "description": "CLI tool for uploading Claude Code conversations to runlog.io", "type": "module", "main": "dist/index.js", "bin": { "runlog": "./dist/index.js" }, "scripts": { "build": "tsc", "dev": "ts-node src/index.ts", "test": "jest", "test:watch": "jest --watch", "clean": "rm -rf dist", "prepare": "npm run build" }, "keywords": [ "claude", "code", "conversation", "share", "cli" ], "author": "runlog", "repository": { "type": "git", "url": "git+https://github.com/TensorPoet/runlog-cli.git" }, "bugs": { "url": "https://github.com/TensorPoet/runlog-cli/issues" }, "homepage": "https://runlog.io", "license": "MIT", "dependencies": { "axios": "^1.6.2", "chalk": "^5.3.0", "cli-table3": "^0.6.5", "date-fns": "^3.0.0", "inquirer": "^9.2.12", "ora": "^8.0.1" }, "devDependencies": { "@types/jest": "^29.5.11", "@types/node": "^20.10.5", "jest": "^29.7.0", "ts-jest": "^29.1.1", "ts-node": "^10.9.2", "typescript": "^5.3.3" }, "engines": { "node": ">=16.0.0" } }