{
  "name": "vulncheck-sdk",
  "version": "0.1.3",
  "description": "A comprehensive TypeScript/JavaScript SDK for the VulnCheck API - vulnerability intelligence platform with enriched CVE data, threat intelligence, and security tooling",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "types": "./dist/types/index.d.ts"
    }
  },
  "files": [
    "dist/",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "npm run build:clean && npm run build:tsc && npm run build:fix-esm",
    "build:clean": "rm -rf dist",
    "build:tsc": "tsc -p tsconfig.json && tsc -p tsconfig.esm.json",
    "build:fix-esm": "node scripts/fix-esm-imports.js",
    "verify-deno": "node verify-deno-fix.js",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:integration": "jest --config jest.integration.config.js",
    "test:integration:watch": "jest --config jest.integration.config.js --watch",
    "test:all": "npm test && npm run test:integration",
    "lint": "eslint src/**/*.ts",
    "typecheck": "tsc --noEmit",
    "dev": "tsc --watch",
    "prepublishOnly": "npm run lint && npm run typecheck && npm run test:all && npm run build",
    "docs": "typedoc",
    "clean": "npm run build:clean"
  },
  "keywords": [
    "vulncheck",
    "vulnerability",
    "cve",
    "security",
    "api",
    "typescript",
    "threat-intelligence",
    "vulnerability-database",
    "exploit-database",
    "security-tools",
    "nvd",
    "mitre"
  ],
  "author": "boB Rudis <bob@rud.is>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://codeberg.org/hrbrmstr/vulncheck-sdk.git"
  },
  "bugs": {
    "url": "https://codeberg.org/hrbrmstr/vulncheck-sdk/issues"
  },
  "homepage": "https://codeberg.org/hrbrmstr/vulncheck-sdk",
  "engines": {
    "node": ">=20.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/jest": "^29.0.0",
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "dotenv": "^16.6.1",
    "eslint": "^8.0.0",
    "jest": "^29.0.0",
    "rollup": "^4.0.0",
    "rollup-plugin-typescript2": "^0.35.0",
    "ts-jest": "^29.0.0",
    "typedoc": "^0.25.0",
    "typescript": "^5.0.0"
  },
  "dependencies": {
    "axios": "^1.6.0"
  }
}
