package.json 739 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "dify-client",
  3. "version": "2.0.0",
  4. "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.",
  5. "main": "index.js",
  6. "type": "module",
  7. "keywords": [
  8. "Dify",
  9. "Dify.AI",
  10. "LLM"
  11. ],
  12. "author": "Joel",
  13. "contributors": [
  14. "<crazywoola> <<427733928@qq.com>> (https://github.com/crazywoola)"
  15. ],
  16. "license": "MIT",
  17. "scripts": {
  18. "test": "jest"
  19. },
  20. "jest": {
  21. "transform": {
  22. "^.+\\.[t|j]sx?$": "babel-jest"
  23. }
  24. },
  25. "dependencies": {
  26. "axios": "^1.3.5"
  27. },
  28. "devDependencies": {
  29. "@babel/core": "^7.21.8",
  30. "@babel/preset-env": "^7.21.5",
  31. "babel-jest": "^29.5.0",
  32. "jest": "^29.5.0"
  33. }
  34. }