{
  "name": "skillli",
  "version": "0.1.0",
  "description": "Discover, publish, rate, and use agentic AI skills packages — the skill librarian for Claude Code and beyond",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./mcp": {
      "import": {
        "types": "./dist/mcp/index.d.ts",
        "default": "./dist/mcp/index.js"
      },
      "require": {
        "types": "./dist/mcp/index.d.cts",
        "default": "./dist/mcp/index.cjs"
      }
    }
  },
  "bin": {
    "skillli": "dist/cli/index.js",
    "skillli-mcp": "dist/mcp/index.js"
  },
  "files": [
    "dist/",
    "templates/",
    ".claude/"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "eslint src/",
    "format": "prettier --write src/",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build && npm run test"
  },
  "keywords": [
    "ai",
    "skills",
    "agentic",
    "claude",
    "mcp",
    "llm",
    "agent",
    "skill-library",
    "marketplace",
    "skill-librarian"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Domusgpt/skillli.git"
  },
  "author": "Domusgpt",
  "license": "MIT",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.27.0",
    "chalk": "^5.3.0",
    "commander": "^14.0.0",
    "glob": "^11.0.0",
    "gray-matter": "^4.0.3",
    "inquirer": "^12.0.0",
    "ora": "^8.2.0",
    "semver": "^7.6.0",
    "zod": "^3.23.0"
  },
  "devDependencies": {
    "@types/inquirer": "^9.0.0",
    "@types/node": "^20.0.0",
    "@types/semver": "^7.5.0",
    "prettier": "^3.3.0",
    "tsup": "^8.0.0",
    "typescript": "^5.5.0",
    "vitest": "^2.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
