package.json 763 B

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