{ "name": "skillfish", "version": "1.0.29", "description": "All in one Skill manager for AI coding agents. Install, update, and sync Skills across Claude Code, Cursor, Copilot + more.", "type": "module", "bin": { "skillfish": "dist/index.js" }, "files": [ "dist", "!dist/__tests__", "README.md" ], "engines": { "node": ">=18" }, "repository": { "type": "git", "url": "git+https://github.com/knoxgraeme/skillfish.git" }, "bugs": { "url": "https://github.com/knoxgraeme/skillfish/issues" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "prepublishOnly": "npm run lint && npm test && npm run build", "test": "vitest run", "test:watch": "vitest", "lint": "eslint .", "lint:fix": "eslint . --fix", "format": "prettier --write .", "format:check": "prettier --check .", "typecheck": "tsc --noEmit", "prepare": "husky" }, "keywords": [ "cli", "skills", "agent-skills", "ai-agent", "ai-tools", "mcp", "claude", "claude-code", "cursor", "windsurf", "codex", "copilot", "github-copilot", "gemini-cli", "opencode", "goose", "amp", "roo", "kiro", "trae", "cline" ], "author": "Graeme Knox", "license": "AGPL-3.0", "homepage": "https://skill.fish", "funding": { "type": "github", "url": "https://github.com/sponsors/knoxgraeme" }, "publishConfig": { "access": "public" }, "dependencies": { "@clack/prompts": "^0.11.0", "commander": "^14.0.2", "giget": "^3.1.1", "picocolors": "^1.1.1", "update-notifier": "^7.3.1" }, "devDependencies": { "@eslint/js": "^9.39.2", "@types/node": "^25.0.10", "@types/update-notifier": "^6.0.8", "eslint": "^9.39.2", "eslint-config-prettier": "^10.1.8", "husky": "^9.1.7", "lint-staged": "^16.2.7", "prettier": "^3.8.1", "tsx": "^4.21.0", "typescript": "^5.4.0", "typescript-eslint": "^8.53.1", "vitest": "^4.0.17" }, "lint-staged": { "*.ts": [ "eslint --fix", "prettier --write" ], "*.{json,yml,yaml}": [ "prettier --write" ] } }