{
  "name": "@jentic/arazzo-validator",
  "version": "1.0.0-alpha.32",
  "description": "Validator & Linter for Arazzo Documents.",
  "keywords": [
    "arazzo",
    "arazzo-specification",
    "validator",
    "validation",
    "linter",
    "linting",
    "workflow",
    "workflows"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org",
    "provenance": true,
    "tag": "latest"
  },
  "type": "module",
  "sideEffects": false,
  "engines": {
    "node": ">=20.10.0"
  },
  "unpkg": "./dist/jentic-arazzo-validator.browser.min.js",
  "main": "./src/index.cjs",
  "exports": {
    "types": "./types/arazzo-validator.d.ts",
    "import": "./src/index.mjs",
    "require": "./src/index.cjs"
  },
  "types": "./types/arazzo-validator.d.ts",
  "bin": {
    "arazzo-validator": "./bin/arazzo-validator.mjs"
  },
  "scripts": {
    "build": "npm run clean && run-p --max-parallel ${CPU_CORES:-2} typescript:declaration build:es build:cjs build:umd:browser",
    "build:es": "cross-env BABEL_ENV=es babel src --out-dir src --extensions '.ts' --out-file-extension '.mjs' --root-mode 'upward'",
    "build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir src --extensions '.ts' --out-file-extension '.cjs' --root-mode 'upward'",
    "build:umd:browser": "cross-env BABEL_ENV=browser webpack --config config/webpack/browser.config.js --progress",
    "lint": "eslint ./",
    "lint:fix": "eslint ./ --fix",
    "clean": "rimraf --glob 'src/**/*.mjs' 'src/**/*.cjs' 'test/**/*.mjs' ./dist ./types",
    "typescript:check-types": "tsc --noEmit",
    "typescript:declaration": "tsc -p tsconfig.declaration.json && api-extractor run -l -c ./config/api-extractor/api-extractor.json",
    "test": "npm run build:es && cross-env BABEL_ENV=es babel test --out-dir test --extensions '.ts' --out-file-extension '.mjs' --root-mode 'upward' && cross-env NODE_ENV=test mocha",
    "prepack": "copyfiles -u 2 ../../LICENSE . && copyfiles -u 2 ../../NOTICE .",
    "postpack": "rimraf NOTICE LICENSE"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jentic/jentic-arazzo-tools.git"
  },
  "author": "Jentic <hello@jentic.com>",
  "license": "Apache-2.0",
  "dependencies": {
    "@babel/runtime-corejs3": "^8.0.0",
    "@jentic/arazzo-parser": "1.0.0-alpha.32",
    "@speclynx/apidom-ls": "^2.11.6",
    "@speclynx/apidom-ns-arazzo-1": "^5.0.1",
    "@speclynx/apidom-parser-adapter-arazzo-json-1": "^5.0.1",
    "@speclynx/apidom-parser-adapter-arazzo-yaml-1": "^5.0.1",
    "@speclynx/apidom-reference": "^5.0.1",
    "@swaggerexpert/arazzo-runtime-expression": "^3.1.0",
    "chalk": "^5.6.2",
    "commander": "^14.0.3",
    "ramda": "^0.32.0",
    "type-fest": "^5.4.4",
    "vscode-languageserver-textdocument": "^1.0.12",
    "vscode-languageserver-types": "=3.17.6-next.6"
  },
  "files": [
    "bin/",
    "src/**/*.mjs",
    "src/**/*.cjs",
    "dist/",
    "types/arazzo-validator.d.ts",
    "LICENSE",
    "NOTICE",
    "README.md",
    "CHANGELOG.md"
  ],
  "gitHead": "a5ea37ac6a1bd3b56df95cdb308a9b62a4cc375b"
}
