{
  "name": "@hasna/skills",
  "version": "0.1.61",
  "description": "Skills library for AI coding agents",
  "type": "module",
  "bin": {
    "skills": "bin/index.js",
    "skills-mcp": "bin/mcp.js",
    "skills-server": "bin/server.js",
    "skills-worker": "bin/worker.js",
    "skills-migrate": "bin/migrate.js"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./storage": {
      "import": "./dist/storage.js",
      "types": "./dist/storage.d.ts"
    }
  },
  "files": [
    "dist/",
    "!dist/**/*.test.d.ts",
    "!dist/test-preload.d.ts",
    "!dist/platform",
    "!dist/server",
    "bin/",
    "migrations/",
    "docs/skill-standard.md",
    "skills/",
    "!skills/**/node_modules",
    "agent-skills/",
    "LICENSE",
    "README.md"
  ],
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "clean": "rm -rf bin/ dist/",
    "build": "bun run clean && bun build ./src/cli/index.tsx --outdir ./bin --target bun && bun build ./src/mcp/index.ts --outfile ./bin/mcp.js --target bun && bun build ./src/server/index.ts --outfile ./bin/server.js --target bun && bun build ./src/server/worker.ts --outfile ./bin/worker.js --target bun && bun build ./src/server/migrate.ts --outfile ./bin/migrate.js --target bun && bun build ./src/index.ts ./src/storage.ts --outdir ./dist --target bun && tsc --emitDeclarationOnly --declaration --outDir dist",
    "test": "bun test --timeout 30000",
    "dev": "bun run ./src/cli/index.tsx",
    "dev:watch": "bun --watch run ./src/cli/index.tsx",
    "dev:mcp": "bun --watch run ./src/mcp/index.ts",
    "dev:server": "bun --watch run ./src/server/index.ts",
    "dev:worker": "bun --watch run ./src/server/worker.ts",
    "migrate": "bun run ./src/server/migrate.ts",
    "typecheck": "tsc --noEmit",
    "verify:release": "bun run scripts/release-guard.ts",
    "prepack": "bun run build && bun run verify:release",
    "prepublishOnly": "bun run typecheck && bun run test",
    "postinstall": "mkdir -p $HOME/.hasna/skills/custom 2>/dev/null || true"
  },
  "keywords": [
    "skills",
    "ai",
    "agent",
    "cli",
    "typescript",
    "bun",
    "claude",
    "codex",
    "gemini",
    "mcp",
    "model-context-protocol",
    "open-source",
    "skills-library",
    "automation"
  ],
  "author": "Hasna",
  "license": "Apache-2.0",
  "devDependencies": {
    "@types/bun": "latest",
    "@types/react": "^18.2.0",
    "react-devtools-core": "^7.0.1",
    "typescript": "^5"
  },
  "dependencies": {
    "@aws-sdk/client-s3": "^3.1079.0",
    "@hasna/events": "^0.1.7",
    "@modelcontextprotocol/sdk": "^1.26.0",
    "chalk": "^5.3.0",
    "commander": "^12.1.0",
    "ink": "^5.0.1",
    "ink-select-input": "^6.0.0",
    "ink-spinner": "^5.0.0",
    "ink-text-input": "^6.0.0",
    "react": "^18.2.0",
    "zod": "^4.3.6"
  },
  "engines": {
    "bun": ">=1.0.0"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hasna/skills.git"
  },
  "homepage": "https://github.com/hasna/skills",
  "bugs": {
    "url": "https://github.com/hasna/skills/issues"
  }
}
