Files
skillhub/package.json
airano 97b427831a Initial release v1.0.0
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>
2026-02-12 06:42:07 +03:30

60 lines
1.5 KiB
JSON

{
"name": "skillhub",
"version": "0.1.0",
"private": true,
"description": "Open source Agent Skills marketplace with web UI, CLI, and desktop app",
"repository": {
"type": "git",
"url": "https://github.com/airano-ir/skillhub.git"
},
"license": "MIT",
"author": "Airano <hi.airano@gmail.com>",
"workspaces": [
"apps/*",
"packages/*",
"services/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "turbo test",
"typecheck": "turbo typecheck",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"clean": "turbo clean && rm -rf node_modules",
"db:generate": "pnpm --filter @skillhub/db generate",
"db:migrate": "pnpm --filter @skillhub/db migrate",
"db:push": "pnpm --filter @skillhub/db push",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.0",
"turbo": "^2.0.0",
"typescript": "^5.3.0",
"vitest": "^1.2.0"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}