mirror of https://github.com/langgenius/dify.git
37 lines
829 B
JSON
37 lines
829 B
JSON
{
|
|
"name": "langgenius-client",
|
|
"version": "1.1.1",
|
|
"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.",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"keywords": [
|
|
"LangGenius",
|
|
"Dify.AI",
|
|
"LLM"
|
|
],
|
|
"author": "Joel",
|
|
"contributors": [
|
|
"<crazywoola> <<427733928@qq.com>> (https://github.com/crazywoola)"
|
|
],
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"test:coverage": "jest --coverage",
|
|
"test:watch": "jest --watchAll"
|
|
},
|
|
"jest": {
|
|
"transform": {
|
|
"^.+\\.[t|j]sx?$": "babel-jest"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.21.8",
|
|
"@babel/preset-env": "^7.21.5",
|
|
"babel-jest": "^29.5.0",
|
|
"jest": "^29.5.0"
|
|
}
|
|
}
|