{ "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 ", "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" ] } }