- Commander.js-based CLI with subcommands - Document commands: list, get, create, update, delete, export, add-tags - Library commands: list, get, create, tree - Tag commands: list, docs - Auth commands: login, status - Axios-based API client with error handling - Config loader for ~/.config/simplenote/config.json - Chalk for colored output
24 lines
532 B
JSON
24 lines
532 B
JSON
{
|
|
"name": "simplenote-cli",
|
|
"version": "0.1.0",
|
|
"description": "SimpleNote CLI - Agent communication CLI for document management",
|
|
"main": "src/index.js",
|
|
"type": "module",
|
|
"bin": {
|
|
"simplenote": "src/index.js"
|
|
},
|
|
"scripts": {
|
|
"start": "node src/index.js"
|
|
},
|
|
"keywords": ["cli", "documents", "markdown"],
|
|
"author": "OpenClaw Team",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"axios": "^1.7.7",
|
|
"chalk": "^5.3.0",
|
|
"commander": "^12.1.0",
|
|
"dotenv": "^16.4.5",
|
|
"inquirer": "^9.2.0"
|
|
}
|
|
}
|