{ "name": "dify-client", "version": "3.0.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", "README.md", "LICENSE" ], "keywords": [ "Dify", "Dify.AI", "LLM", "AI", "SDK", "API" ], "author": "LangGenius", "contributors": [ "Joel (https://github.com/iamjoel)", "lyzno1 (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", "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" }, "dependencies": { "axios": "^1.13.2" }, "devDependencies": { "@eslint/js": "^9.39.2", "@types/node": "^25.0.3", "@typescript-eslint/eslint-plugin": "^8.50.1", "@typescript-eslint/parser": "^8.50.1", "@vitest/coverage-v8": "4.0.16", "eslint": "^9.39.2", "tsup": "^8.5.1", "typescript": "^5.9.3", "vitest": "^4.0.16" } }