Open-source marketplace for AI Agent skills. Features: - Next.js 15 web app with i18n (en/fa) - CLI tool for skill installation (npx skillhub) - GitHub crawler/indexer with multi-strategy discovery - Security scanning for all indexed skills - Self-hostable with Docker Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
375 B
JSON
18 lines
375 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@skillhub/core": ["packages/core/src"],
|
|
"@skillhub/db": ["packages/db/src"],
|
|
"@skillhub/ui": ["packages/ui/src"]
|
|
}
|
|
},
|
|
"include": [],
|
|
"references": [
|
|
{ "path": "packages/core" },
|
|
{ "path": "packages/db" },
|
|
{ "path": "packages/ui" }
|
|
]
|
|
}
|