{
  "name": "tap-yaml",
  "version": "4.0.0",
  "description": "Yaml handling for TAP parsers and generators",
  "tshy": {
    "main": true,
    "exports": {
      "./package.json": "./package.json",
      ".": "./src/index.ts"
    }
  },
  "type": "module",
  "main": "./dist/commonjs/index.js",
  "types": "./dist/commonjs/index.d.ts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/commonjs/index.d.ts",
        "default": "./dist/commonjs/index.js"
      }
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "snap": "tap",
    "test": "tap",
    "prepare": "tshy",
    "pretest": "npm run prepare",
    "presnap": "npm run prepare",
    "format": "prettier --write . --loglevel warn --ignore-path ../../.prettierignore --cache",
    "typedoc": "typedoc --tsconfig tsconfig/esm.json ./src/*.ts"
  },
  "author": "Isaac Z. Schlueter <i@izs.me>",
  "license": "BlueOak-1.0.0",
  "dependencies": {
    "yaml": "^2.4.1",
    "yaml-types": "^0.4.0"
  },
  "tap": {
    "typecheck": false,
    "coverage-map": "map.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tapjs/tap-yaml.git"
  },
  "keywords": [
    "tap",
    "yaml",
    "test",
    "testanything"
  ],
  "module": "./dist/esm/index.js",
  "engines": {
    "node": "20 || >=22"
  }
}
