mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 09:37:17 +00:00
Also make the cli for the skin-database the canonical way to tweet This opens the door for moving the state of which tweets have been approved/denied/tweeted into the MongoDB database and not S3
21 lines
442 B
JSON
21 lines
442 B
JSON
{
|
|
"name": "skin-database",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"aws-sdk": "^2.469.0",
|
|
"discord.js": "^11.4.2",
|
|
"express": "^4.17.1",
|
|
"md5": "^2.2.1",
|
|
"rgb-hex": "^2.1.0",
|
|
"monk": "^7.0.0",
|
|
"node-fetch": "^2.6.0",
|
|
"yargs": "^13.2.4"
|
|
},
|
|
"scripts": {
|
|
"serve": "node index.js",
|
|
"tweet": "./cli.js tweet",
|
|
"bot": "node ./discord-bot/index.js"
|
|
}
|
|
}
|