Maintenance

This commit is contained in:
Skylar Grant 2024-09-22 13:46:52 -04:00
parent 503d2029ff
commit 4049a2264d
4 changed files with 1156 additions and 0 deletions

17
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\src\\index.js"
}
]
}

30
.vscode/snips.code-snippets vendored Normal file
View File

@ -0,0 +1,30 @@
{
// Place your custom-scripts workspace snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
// Placeholders with the same ids are connected.
// Example:
// "Print to console": {
// "scope": "javascript,typescript",
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"Banner Comment": {
"scope": "javascript,typescript",
"description": "Banner Comment",
"prefix": "///",
"body": [
"// #############################################################",
"// $1",
"// #############################################################",
"$2"
]
}
}

1085
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

24
package.json Normal file
View File

@ -0,0 +1,24 @@
{
"name": "hookshot",
"version": "1.0.0",
"description": "Quick and sloppy intermediary webhook server. Designed to relay messages to Discord from other webhook triggers.",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.vfsh.dev/voidf1sh/hookshot"
},
"keywords": [
"webhook",
"discord"
],
"author": "Skylar Grant",
"license": "MIT",
"dependencies": {
"discord.js": "^14.16.2",
"dotenv": "^16.4.5",
"express": "^4.21.0"
}
}