{
  "name": "@oada/formats",
  "version": "4.1.1",
  "description": "Reworked OADA formats",
  "keywords": [
    "oada",
    "trellis",
    "JSON Schema",
    "schema"
  ],
  "author": "Alex Layton <alex@layton.in>",
  "homepage": "https://github.com/OADA/formats/packages/formats",
  "repository": {
    "type": "git",
    "url": "https://github.com/OADA/formats.git",
    "directory": "packages/formats"
  },
  "bugs": {
    "url": "https://github.com/OADA/formats/labels/@oada/formats"
  },
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "module": "./src/index.ts",
      "default": "./dist/index.js"
    },
    "./ajv": {
      "types": "./dist/ajv.d.ts",
      "module": "./src/ajv.ts",
      "default": "./dist/ajv.js"
    }
  },
  "directories": {
    "lib": "dist"
  },
  "files": [
    "src",
    "dist",
    "tsconfig.json"
  ],
  "scripts": {
    "buildschemas": "node --enable-source-maps ./dist/schemas/compile.js",
    "build": "yarn g:tsc && yarn run buildschemas",
    "clean": "yarn g:tsc --clean; rm -rf dist",
    "prepare": "npm run build",
    "test": "c8 ava",
    "test:debug": "ava -T 60m -svc 1 --no-worker-threads"
  },
  "publishConfig": {
    "access": "public"
  },
  "ava": {
    "failFast": false,
    "files": [
      "**/*.spec.ts"
    ],
    "typescript": {
      "extensions": [
        "ts",
        "cts",
        "mts"
      ],
      "rewritePaths": {
        "src/": "dist/",
        "test/": ".test/"
      },
      "compile": false
    }
  },
  "c8": {
    "reporter": [
      "text",
      "lcov"
    ],
    "all": true,
    "src": "src",
    "exclude": [
      "*.d.ts",
      ".pnp.*",
      ".test"
    ]
  },
  "dependencies": {
    "@apidevtools/json-schema-ref-parser": "^11.9.3",
    "@oada/media-types": "^4.1.1",
    "@oada/schemas": "^4.1.1",
    "ajv": "^8.20.0",
    "ajv-formats": "^3.0.1",
    "ajv-formats-draft2019": "^1.6.1",
    "axios": "^1.16.1",
    "tslib": "^2.8.1"
  },
  "devDependencies": {
    "@ava/typescript": "^7.0.0",
    "@types/debug": "^4.1.13",
    "@types/mkdirp": "^2.0.0",
    "@types/node": "^20.19.41",
    "@types/yargs": "^17.0.35",
    "ava": "^8.0.1",
    "c8": "^11.0.0",
    "debug": "^4.4.3",
    "jsonschema8": "^2.0.0",
    "mkdirp": "^3.0.1",
    "yargs": "^18.0.0"
  }
}