{
  "name": "@functional-examples/yaml-manifest",
  "version": "0.1.2",
  "description": "YAML manifest plugin for multi-file examples in functional-examples",
  "author": {
    "name": "Craigory Coppola",
    "url": "https://craigory.dev"
  },
  "publishConfig": {
    "access": "public"
  },
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "dependencies": {
    "picomatch": "^4.0.3",
    "tinyglobby": "^0.2.15",
    "yaml": "^2.7.1",
    "@functional-examples/devkit": "0.1.2"
  },
  "devDependencies": {
    "@types/node": "22.19.8",
    "typescript": "^5.7.2",
    "vitest": "^1.3.1",
    "@functional-examples/devkit": "0.1.2"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "homepage": "https://craigory.dev/functional-examples",
  "repository": {
    "type": "git",
    "url": "https://github.com/AgentEnder/functional-examples.git"
  },
  "bugs": {
    "url": "https://github.com/AgentEnder/functional-examples/issues"
  },
  "scripts": {
    "build": "tsc -p tsconfig.lib.json",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "eslint .",
    "extract-docs": "typedoc --options typedoc.json"
  }
}