Files
oc/package.json
T
only-cli f81ff04fa8 readme: supported websites, benchmark results, llms.txt for discovery
The README now lists the tuned site shortcuts (Hacker News, Reddit,
DuckDuckGo, Bing) next to the generic engine, and cites the live
benchmark numbers from only-cli/benchmarks. llms.txt gives AI assistants
a one-page summary to index. npm keywords added for search.

The internal build spec moves out of the published repo.
2026-08-18 09:32:42 -04:00

52 lines
1011 B
JSON

{
"name": "only-cli",
"version": "0.1.0",
"description": "Turn websites into a compact CLI so AI agents can browse without burning tokens.",
"type": "module",
"bin": {
"oc": "src/cli.js"
},
"files": [
"src",
"clis",
"skills"
],
"engines": {
"node": ">=20"
},
"scripts": {
"test": "node --test"
},
"keywords": [
"cli",
"ai-agents",
"web-browsing",
"token-efficient",
"claude",
"claude-code",
"chatgpt",
"codex",
"llm",
"scraping",
"html-to-markdown",
"agent-tools"
],
"author": "only-cli (https://github.com/only-cli)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/only-cli/only-cli.git"
},
"homepage": "https://github.com/only-cli/only-cli#readme",
"bugs": {
"url": "https://github.com/only-cli/only-cli/issues"
},
"dependencies": {
"linkedom": "^0.18.12",
"turndown": "^7.2.4"
},
"optionalDependencies": {
"impers": "^0.1.0"
}
}