{
  "name": "@vibe-agent-toolkit/agent-skills",
  "version": "0.1.42",
  "description": "Build, validate, and package agent skills in the Agent Skills format",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./schemas/*": "./schemas/*"
  },
  "files": [
    "dist",
    "schemas/",
    "vendor/",
    "README.md"
  ],
  "scripts": {
    "build": "tsc --build && bun run generate:schemas",
    "build:watch": "tsc --build --watch",
    "clean": "rm -rf dist *.tsbuildinfo schemas/",
    "generate:schemas": "tsx scripts/generate-json-schemas.ts",
    "test:unit": "vitest run",
    "test:integration": "vitest run --config vitest.integration.config.ts",
    "test:watch": "vitest watch",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    "@vibe-agent-toolkit/agent-config": "0.1.42",
    "@vibe-agent-toolkit/agent-schema": "0.1.42",
    "@vibe-agent-toolkit/resources": "0.1.42",
    "@vibe-agent-toolkit/utils": "0.1.42",
    "adm-zip": "^0.6.0",
    "glob": "^10.3.10",
    "picomatch": "^4.0.3",
    "yaml": "^2.6.1",
    "zod": "^3.24.1",
    "zod-to-json-schema": "^3.23.5"
  },
  "devDependencies": {
    "@types/adm-zip": "^0.5.7",
    "@types/picomatch": "^4.0.2",
    "@types/node": "^22.0.0",
    "ajv": "^8.17.1",
    "github-slugger": "^2.0.0",
    "tsx": "^4.19.2",
    "typescript": "~5.7.2",
    "vitest": "^3.2.4"
  },
  "keywords": [
    "ai",
    "agent",
    "claude",
    "skills",
    "validation"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/jdutton/vibe-agent-toolkit.git",
    "directory": "packages/agent-skills"
  },
  "author": "Jeff Dutton",
  "license": "MIT",
  "engines": {
    "node": ">=22.0.0"
  }
}
