{
  "name": "dify-client",
  "version": "3.1.0",
  "description": "This is the Node.js SDK for the Dify.AI API, which allows you to easily integrate Dify.AI into your Node.js applications.",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "dist/index.js",
    "dist/index.d.ts",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "Dify",
    "Dify.AI",
    "LLM",
    "AI",
    "SDK",
    "API"
  ],
  "author": "LangGenius",
  "contributors": [
    "Joel <iamjoel007@gmail.com> (https://github.com/iamjoel)",
    "lyzno1 <yuanyouhuilyz@gmail.com> (https://github.com/lyzno1)",
    "crazywoola <427733928@qq.com> (https://github.com/crazywoola)"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/langgenius/dify.git",
    "directory": "sdks/nodejs-client"
  },
  "bugs": {
    "url": "https://github.com/langgenius/dify/issues"
  },
  "homepage": "https://dify.ai",
  "license": "MIT",
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/node": "25.5.0",
    "@typescript-eslint/eslint-plugin": "^8.57.2",
    "@typescript-eslint/parser": "8.57.2",
    "@vitest/coverage-v8": "4.1.1",
    "eslint": "10.1.0",
    "tsup": "^8.5.1",
    "typescript": "5.9.3",
    "vitest": "npm:@voidzero-dev/vite-plus-test@0.1.14"
  },
  "scripts": {
    "build": "tsup",
    "lint": "eslint",
    "lint:fix": "eslint --fix",
    "type-check": "tsc -p tsconfig.json --noEmit",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "publish:check": "./scripts/publish.sh --dry-run",
    "publish:npm": "./scripts/publish.sh"
  }
}