{
  "name": "@hasna/skills",
  "version": "0.1.46",
  "description": "Skills library for AI coding agents",
  "type": "module",
  "bin": {
    "skills": "./bin/index.js",
    "skills-mcp": "./bin/mcp.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/platform",
    "!dist/server",
    "bin/",
    "docs/skill-standard.md",
    "skills/",
    "!skills/**/node_modules",
    "!skills/scaffold-project/my-app",
    "!skills/{ad-creative-pack,api-docs-portal,audio,audio-transcript-pack,blog-article,brand-kit,brand-photo-shoot,browse,contract-review-report,customer-feedback-report,deepresearch,email-sequence,generate-book-cover,icon-pack,image,invoice-reconciliation,landing-page-pack,logo-design,market-research-report,meeting-pack,migration-plan-pack,music,music-album,one-page-website,pdf-read,pdf-to-dataset,pdf-to-markdown,performance-audit-report,photo-album,pitch-deck,playlist-maker,product-mockup,proposal-pack,read-pdf,remove-background,repo-onboarding-report,sdk-generator,security-audit-report,seo-content-pack,short-video-pack,slide-deck-generator,social-content-calendar,test-suite-generator,transcript,video,video-highlight-pack,voiceover-jingle-pack,webcrawling}/src",
    "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/index.ts ./src/storage.ts --outdir ./dist --target bun && tsc --emitDeclarationOnly --declaration --outDir dist",
    "test": "bun test",
    "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",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "bun run build",
    "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": {
    "@hasna/events": "^0.1.3",
    "@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"
  }
}
