article-summarizer-jp
Version:
CLI tool for summarizing web articles in Japanese using Anthropic Claude API. Fetches content from URLs and generates both 3-line summaries and full translations in polite Japanese.
84 lines (83 loc) • 2.13 kB
JSON
{
"name": "article-summarizer-jp",
"version": "1.5.25",
"type": "module",
"main": "dist/index.js",
"bin": {
"article-summarizer-jp": "dist/index.js",
"asumjp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"lint": "tsc --noEmit",
"format": "biome format --write .",
"format:check": "biome format .",
"prepublishOnly": "npm run build",
"test": "echo \"Tests not implemented yet\"",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js,json}": [
"biome format --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/sKawashima/article-summarizer-jp.git"
},
"keywords": [
"cli",
"article",
"summarizer",
"japanese",
"translation",
"anthropic",
"claude",
"ai",
"nlp",
"web-scraping"
],
"author": "sKawashima",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist",
"README.md"
],
"bugs": {
"url": "https://github.com/sKawashima/article-summarizer-jp/issues"
},
"homepage": "https://github.com/sKawashima/article-summarizer-jp#readme",
"description": "CLI tool for summarizing web articles in Japanese using Anthropic Claude API. Fetches content from URLs and generates both 3-line summaries and full translations in polite Japanese.",
"devDependencies": {
"@biomejs/biome": "^2.0.4",
"@types/configstore": "^6.0.2",
"@types/html-escaper": "^3.0.4",
"@types/inquirer": "^9.0.8",
"@types/jsdom": "^21.1.7",
"@types/node": "^24.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"tsx": "^4.20.1",
"typescript": "^5.8.3"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.67.0",
"@extractus/article-extractor": "^8.0.19",
"@types/blessed": "^0.1.25",
"blessed": "^0.1.81",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"configstore": "^7.0.0",
"html-escaper": "^3.0.3",
"inquirer": "^12.6.3",
"jsdom": "^26.1.0",
"node-fetch": "^3.3.2",
"pdf2json": "^4.0.0",
"puppeteer": "^24.10.0"
}
}