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>
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"name": "skillhub-core",
|
|
"version": "0.1.0",
|
|
"description": "Core utilities for parsing and validating SKILL.md files",
|
|
"author": "SkillHub Contributors",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/anthropics/skillhub.git",
|
|
"directory": "packages/core"
|
|
},
|
|
"homepage": "https://skills.palebluedot.live",
|
|
"keywords": [
|
|
"skill",
|
|
"ai",
|
|
"agent",
|
|
"claude",
|
|
"codex",
|
|
"copilot",
|
|
"parser",
|
|
"validator"
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": ["dist"],
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format esm --dts",
|
|
"dev": "tsup src/index.ts --format esm --dts --watch",
|
|
"lint": "eslint src/",
|
|
"test": "vitest",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"gray-matter": "^4.0.3",
|
|
"yaml": "^2.3.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"tsup": "^8.0.1",
|
|
"typescript": "^5.3.0",
|
|
"vitest": "^1.2.0"
|
|
}
|
|
}
|