UNPKG

polish-cli

Version:

AI-powered file organization for Obsidian with automatic markdown conversion

92 lines 2.63 kB
{ "name": "polish-cli", "version": "0.2.0", "description": "AI-powered file organization for Obsidian with automatic markdown conversion", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "polish": "./dist/cli/index.js" }, "scripts": { "build": "tsc", "dev": "tsx src/cli/index.ts", "start": "node dist/cli/index.js", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:ci": "jest --coverage --ci --watchAll=false", "test:integration": "jest --testNamePattern='integration'", "coverage:check": "jest --coverage --passWithNoTests && npm run coverage:verify", "coverage:verify": "nyc check-coverage --lines 80 --functions 80 --branches 80 --statements 80", "coverage:report": "node scripts/generate-coverage-report.js", "coverage:open": "open coverage/lcov-report/index.html", "prepare": "husky install || true", "quality-check": "npm run lint && npm run typecheck && npm run test:coverage && npm run build", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "typecheck": "tsc --noEmit", "prepublishOnly": "npm run build" }, "keywords": [ "obsidian", "file-organization", "markdown", "ai", "claude", "knowledge-management", "productivity" ], "author": { "name": "Lindsay Hawkins", "email": "lindsay@example.com" }, "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/Masbuc53/polish-cli.git" }, "bugs": { "url": "https://github.com/Masbuc53/polish-cli/issues" }, "homepage": "https://github.com/Masbuc53/polish-cli#readme", "engines": { "node": ">=18.0.0" }, "dependencies": { "@anthropic-ai/sdk": "^0.20.0", "chalk": "^5.3.0", "commander": "^11.1.0", "dotenv": "^16.4.1", "globby": "^14.0.0", "gray-matter": "^4.0.3", "inquirer": "^9.2.15", "mammoth": "^1.6.0", "ora": "^8.0.1", "pdf-parse": "^1.1.1", "sharp": "^0.33.2", "unzipper": "^0.10.14" }, "devDependencies": { "@types/inquirer": "^9.0.7", "@types/jest": "^29.5.11", "@types/node": "^20.11.5", "@types/pdf-parse": "^1.1.4", "@types/unzipper": "^0.10.7", "@typescript-eslint/eslint-plugin": "^6.19.0", "@typescript-eslint/parser": "^6.19.0", "eslint": "^8.56.0", "husky": "^8.0.3", "jest": "^29.7.0", "nyc": "^15.1.0", "pre-commit": "^3.6.0", "ts-jest": "^29.1.1", "tsx": "^4.7.0", "typescript": "^5.3.3" }, "files": [ "dist", "README.md", "LICENSE" ] }