learndb/netlify/functions/package.json

15 wiersze
331 B
JSON
Czysty Zwykły widok Historia

2023-11-24 15:54:43 +00:00
{
"name": "handle-metadata-function",
2023-11-24 17:40:49 +00:00
"version": "1.0.0",
"description": "A Netlify function to handle metadata extraction and analysis",
"main": "handleMetadata.js",
"scripts": {
"start": "node handleMetadata.js"
},
2023-11-24 15:54:43 +00:00
"dependencies": {
2023-11-24 21:44:52 +00:00
"he": "^1.2.0",
2023-11-24 20:49:12 +00:00
"node-fetch": "^2.7.0",
2023-11-28 18:05:23 +00:00
"openai": "^4.20.0"
2023-11-24 15:54:43 +00:00
}
2023-11-24 17:52:38 +00:00
}