{
  "name": "@hasna/skills",
  "version": "0.10.4",
  "description": "Skills library for AI coding agents",
  "type": "module",
  "bin": {
    "skills": "bin/index.js",
    "skills-mcp": "bin/mcp.js",
    "skills-serve": "bin/server.js",
    "skills-server": "bin/server.js",
    "skills-worker": "bin/worker.js",
    "skills-maintenance": "bin/maintenance.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"
    },
    "./sdk": {
      "import": "./dist/sdk/index.js",
      "types": "./dist/sdk/index.d.ts"
    },
    "./admin-contract": {
      "import": "./dist/admin-contract.js",
      "types": "./dist/admin-contract.d.ts"
    }
  },
  "files": [
    "dist/",
    "!dist/**/*.test.d.ts",
    "!dist/**/*.fixture.d.ts",
    "!dist/test-preload.d.ts",
    "!dist/platform",
    "bin/",
    "migrations/",
    "docs/skill-standard.md",
    "docs/plugin-admission.md",
    "schemas/",
    "LICENSE",
    "README.md",
    "!dist/**/*test-utils.d.ts",
    "!dist/**/*fixtures.d.ts"
  ],
  "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/server/maintenance.ts --outfile ./bin/maintenance.js --target bun && bun build ./src/index.ts ./src/storage.ts ./src/sdk/index.ts ./src/admin-contract.ts --outdir ./dist --target bun && tsc --emitDeclarationOnly --declaration --outDir dist",
    "build:js": "rm -rf dist && bun build ./src/index.ts ./src/storage.ts ./src/sdk/index.ts ./src/admin-contract.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",
    "docker:check": "bash scripts/docker-build-check.sh",
    "migrate": "bun run ./src/server/migrate.ts",
    "typecheck": "tsc --noEmit",
    "verify:release": "bun run scripts/release-guard.ts",
    "verify:consumer-types": "bun run scripts/consumer-types.ts",
    "prepack": "bun run verify:generated && bun run verify:release && bun run verify:consumer-types",
    "prepublishOnly": "bun run verify:producer && bun run typecheck && bun run test",
    "verify:producer": "bun run scripts/release-dependencies.ts",
    "verify:generated": "HASNA_SKILLS_RELEASE_ARTIFACT_TEST=1 bun test src/lib/release-artifacts.test.ts",
    "verify:consumer-credentials": "bun run scripts/consumer-credentials.ts"
  },
  "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": {
    "@hasna/contracts": "1.1.0",
    "@types/bun": "1.3.14",
    "@types/node": "25.2.3",
    "@types/react": "^18.2.0",
    "bun-types": "1.3.14",
    "react-devtools-core": "^7.0.1",
    "typescript": "^5",
    "yaml": "^2.9.0"
  },
  "dependencies": {
    "@aws-sdk/client-ecs": "^3.1079.0",
    "@aws-sdk/client-s3": "^3.1079.0",
    "@hasna/events": "0.1.18",
    "@hasna/secrets": "0.4.2",
    "@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": "https://github.com/hasna/apps.git",
    "directory": "apps/skills"
  },
  "homepage": "https://github.com/hasna/apps/tree/main/apps/skills",
  "bugs": {
    "url": "https://github.com/hasna/apps/issues"
  }
}
