This commit is contained in:
nin0dev 2024-07-31 08:55:23 -04:00
parent b656045f4e
commit 208ba3f148
4 changed files with 1160 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
node_modules

12
eslint.config.mjs Normal file
View file

@ -0,0 +1,12 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";
export default [
{files: ["**/*.{js,mjs,cjs,ts}"]},
{files: ["**/*.js"], languageOptions: {sourceType: "commonjs"}},
{languageOptions: { globals: globals.node }},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
];

19
package.json Normal file
View file

@ -0,0 +1,19 @@
{
"name": "anonmsg-discord",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {},
"keywords": [],
"author": "nin0dev",
"license": "GPL-3.0-only",
"dependencies": {
"oceanic.js": "^1.11.1"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"eslint": "9.x",
"globals": "^15.8.0",
"typescript-eslint": "^7.18.0"
}
}

1128
pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load diff