{
  "name": "@directus/specs",
  "version": "14.0.0",
  "description": "OpenAPI Specification of the Directus API",
  "homepage": "https://directus.com",
  "repository": {
    "type": "git",
    "url": "https://github.com/directus/directus.git",
    "directory": "packages/specs"
  },
  "funding": "https://github.com/directus/directus?sponsor=1",
  "license": "SEE LICENSE IN license",
  "author": "Nils Twelker",
  "type": "module",
  "exports": {
    ".": "./index.js",
    "./package.json": "./package.json"
  },
  "main": "index.js",
  "files": [
    "dist",
    "index.d.ts",
    "index.js"
  ],
  "dependencies": {
    "openapi3-ts": "4.5.0"
  },
  "devDependencies": {
    "npm-watch": "0.13.0",
    "swagger-cli": "4.0.4"
  },
  "watch": {
    "build": {
      "patterns": [
        "src"
      ],
      "extensions": "yaml",
      "quiet": true,
      "silent": true
    }
  },
  "scripts": {
    "build": "swagger-cli bundle src/openapi.yaml -o dist/openapi.json",
    "build:deref": "swagger-cli bundle src/openapi.yaml -o dist/openapi-deref.json --dereference",
    "dev": "npm-watch build",
    "validate": "swagger-cli validate src/openapi.yaml"
  }
}