@codervisor/devlog-cli
Version:
Command-line interface for devlog - Extract and stream chat history to devlog server
62 lines (61 loc) • 1.42 kB
JSON
{
"name": "@codervisor/devlog-cli",
"version": "0.1.0",
"description": "Command-line interface for devlog - Extract and stream chat history to devlog server",
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"bin": {
"devlog": "./build/index.js",
"devlog-automation": "./build/automation.js"
},
"scripts": {
"build": "tsc",
"clean": "rimraf build",
"dev": "tsc --watch",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch"
},
"keywords": [
"devlog",
"cli",
"chat-history",
"github-copilot",
"cursor",
"claude-code",
"ai-assistant",
"command-line",
"developer-tools"
],
"author": {
"name": "Marvin Zhang",
"email": "tikazyq@163.com"
},
"license": "Apache-2.0",
"dependencies": {
"@codervisor/devlog-ai": "workspace:*",
"@codervisor/devlog-core": "workspace:*",
"commander": "^12.0.0",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"ora": "^8.0.1",
"fast-glob": "^3.3.2",
"zod": "^3.22.4",
"date-fns": "^3.6.0",
"axios": "^1.6.0",
"progress": "^2.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/progress": "^2.0.5",
"@types/uuid": "^9.0.0",
"typescript": "^5.3.0",
"vitest": "^2.1.9",
"rimraf": "^5.0.5"
},
"engines": {
"node": ">=20"
}
}