This commit is contained in:
hugo
2026-03-15 15:46:07 -04:00
commit f778221f3c
41 changed files with 6362 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "twitter-worker",
"version": "1.0.0",
"type": "module",
"description": "Microservice Twitter API avec Emusks",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "node --watch src/app.js",
"test": "curl -X POST http://localhost:3000/api/twitter/call -H 'Authorization: Bearer test123' -H 'Content-Type: application/json' -d '{\"auth_token\":\"xxx\",\"domain\":\"twitter\",\"method\":\"verify\",\"args\":[]}'"
},
"dependencies": {
"axios": "^1.6.0",
"cycletls": "^2.0.5",
"express": "^4.18.2",
"js-yaml": "^4.1.0",
"x-client-transaction-id": "^0.1.9"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}