alpha-hub/cli/package.json
2026-03-20 12:03:27 -07:00

57 lines
1.3 KiB
JSON

{
"name": "@companion-ai/alpha-hub",
"version": "0.1.2",
"description": "Unofficial alphaXiv-powered CLI and library for research agents",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/getcompanion-ai/alpha-hub.git",
"directory": "cli"
},
"homepage": "https://github.com/getcompanion-ai/alpha-hub#readme",
"bugs": {
"url": "https://github.com/getcompanion-ai/alpha-hub/issues"
},
"exports": {
".": "./src/index.js",
"./lib": {
"types": "./src/lib/index.d.ts",
"default": "./src/lib/index.js"
},
"./lib/auth": {
"types": "./src/lib/auth.d.ts",
"default": "./src/lib/auth.js"
},
"./lib/alphaxiv": "./src/lib/alphaxiv.js",
"./lib/annotations": "./src/lib/annotations.js",
"./lib/papers": "./src/lib/papers.js"
},
"bin": {
"alpha": "./bin/alpha",
"alpha-mcp": "./bin/alpha-mcp"
},
"files": [
"README.md",
"LICENSE",
"bin/",
"src/"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"research",
"papers",
"annotations",
"alphaxiv",
"mcp",
"cli"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"zod": "^3.23.0"
}
}