dify/sdks/nodejs-client/package.json

35 lines
763 B
JSON
Raw Normal View History

2023-05-15 08:51:32 +08:00
{
"name": "dify-client",
"version": "2.2.1",
2023-05-15 08:51:32 +08:00
"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",
"types":"index.d.ts",
2023-05-15 08:51:32 +08:00
"keywords": [
"Dify",
"Dify.AI",
"LLM"
],
"author": "Joel",
"contributors": [
"<crazywoola> <<427733928@qq.com>> (https://github.com/crazywoola)"
],
"license": "MIT",
2023-05-16 09:22:47 +08:00
"scripts": {
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
2023-05-15 08:51:32 +08:00
"dependencies": {
"axios": "^1.3.5"
2023-05-16 09:22:47 +08:00
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"babel-jest": "^29.5.0",
"jest": "^29.5.0"
2023-05-15 08:51:32 +08:00
}
}