UNPKG

claude-chat-viewer

Version:

Interactive CLI tool to view and export Claude conversation histories

59 lines (58 loc) 1.57 kB
{ "name": "claude-chat-viewer", "version": "0.2.0", "description": "Interactive CLI tool to view and export Claude conversation histories", "main": "index.js", "bin": { "claude-chat-viewer": "./bin/claude-chat-viewer.js" }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "start": "node bin/claude-chat-viewer.js", "prepublishOnly": "npm run check-permissions", "check-permissions": "test -x bin/claude-chat-viewer.js || (echo 'Error: bin/claude-chat-viewer.js is not executable' && exit 1)", "lint": "echo \"No linter configured yet\"", "version": "npm run update-changelog && git add CHANGELOG.md", "update-changelog": "echo \"Please update CHANGELOG.md manually before publishing\"" }, "keywords": [ "claude", "anthropic", "chat", "conversation", "viewer", "cli", "export" ], "author": "Jorge", "license": "MIT", "dependencies": { "chalk": "^4.1.2", "inquirer": "^8.2.4", "inquirer-autocomplete-prompt": "^2.0.1", "keypress": "^0.2.1", "open": "^8.4.2", "ora": "^5.4.1" }, "engines": { "node": ">=14.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/jorgeuriarte/claude-chat-viewer.git" }, "bugs": { "url": "https://github.com/jorgeuriarte/claude-chat-viewer/issues" }, "homepage": "https://github.com/jorgeuriarte/claude-chat-viewer#readme", "files": [ "bin/", "lib/", "README.md", "LICENSE", "CHANGELOG.md" ], "publishConfig": { "access": "public" } }