{
  "name": "dify-node-sdk",
  "version": "0.0.8",
  "description": "Dify Node SDK",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.mjs"
    },
    "./*": "./*"
  },
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/yeyunwen/dify-ai-monorepo.git",
    "directory": "dify-node-sdk"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "dify",
    "sdk"
  ],
  "author": "yeyunwen",
  "homepage": "https://github.com/yeyunwen/dify-ai-monorepo/tree/main/dify-sdk/README.md",
  "license": "MIT",
  "dependencies": {
    "axios": "^1.9.0"
  },
  "scripts": {
    "build": "tsdown",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:ui": "vitest --ui",
    "lint": "eslint . --ext .ts,.js",
    "lint:fix": "eslint . --ext .ts,.js --fix",
    "format": "prettier --write .",
    "format:check": "prettier --check .ts,.js",
    "typecheck": "tsc --noEmit",
    "release": "node ../scripts/sdk-release.js",
    "changelog": "conventional-changelog -n ./changelog.config.js -i CHANGELOG.md -s"
  }
}