Inital Code Commit Sorry for doing it from server
This commit is contained in:
		
						commit
						e6c80ae4df
					
				|  | @ -0,0 +1,130 @@ | ||||||
|  | # Logs | ||||||
|  | logs | ||||||
|  | *.log | ||||||
|  | npm-debug.log* | ||||||
|  | yarn-debug.log* | ||||||
|  | yarn-error.log* | ||||||
|  | lerna-debug.log* | ||||||
|  | .pnpm-debug.log* | ||||||
|  | 
 | ||||||
|  | # Diagnostic reports (https://nodejs.org/api/report.html) | ||||||
|  | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json | ||||||
|  | 
 | ||||||
|  | # Runtime data | ||||||
|  | pids | ||||||
|  | *.pid | ||||||
|  | *.seed | ||||||
|  | *.pid.lock | ||||||
|  | 
 | ||||||
|  | # Directory for instrumented libs generated by jscoverage/JSCover | ||||||
|  | lib-cov | ||||||
|  | 
 | ||||||
|  | # Coverage directory used by tools like istanbul | ||||||
|  | coverage | ||||||
|  | *.lcov | ||||||
|  | 
 | ||||||
|  | # nyc test coverage | ||||||
|  | .nyc_output | ||||||
|  | 
 | ||||||
|  | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) | ||||||
|  | .grunt | ||||||
|  | 
 | ||||||
|  | # Bower dependency directory (https://bower.io/) | ||||||
|  | bower_components | ||||||
|  | 
 | ||||||
|  | # node-waf configuration | ||||||
|  | .lock-wscript | ||||||
|  | 
 | ||||||
|  | # Compiled binary addons (https://nodejs.org/api/addons.html) | ||||||
|  | build/Release | ||||||
|  | 
 | ||||||
|  | # Dependency directories | ||||||
|  | node_modules/ | ||||||
|  | jspm_packages/ | ||||||
|  | 
 | ||||||
|  | # Snowpack dependency directory (https://snowpack.dev/) | ||||||
|  | web_modules/ | ||||||
|  | 
 | ||||||
|  | # TypeScript cache | ||||||
|  | *.tsbuildinfo | ||||||
|  | 
 | ||||||
|  | # Optional npm cache directory | ||||||
|  | .npm | ||||||
|  | 
 | ||||||
|  | # Optional eslint cache | ||||||
|  | .eslintcache | ||||||
|  | 
 | ||||||
|  | # Optional stylelint cache | ||||||
|  | .stylelintcache | ||||||
|  | 
 | ||||||
|  | # Microbundle cache | ||||||
|  | .rpt2_cache/ | ||||||
|  | .rts2_cache_cjs/ | ||||||
|  | .rts2_cache_es/ | ||||||
|  | .rts2_cache_umd/ | ||||||
|  | 
 | ||||||
|  | # Optional REPL history | ||||||
|  | .node_repl_history | ||||||
|  | 
 | ||||||
|  | # Output of 'npm pack' | ||||||
|  | *.tgz | ||||||
|  | 
 | ||||||
|  | # Yarn Integrity file | ||||||
|  | .yarn-integrity | ||||||
|  | 
 | ||||||
|  | # dotenv environment variable files | ||||||
|  | .env | ||||||
|  | .env.development.local | ||||||
|  | .env.test.local | ||||||
|  | .env.production.local | ||||||
|  | .env.local | ||||||
|  | 
 | ||||||
|  | # parcel-bundler cache (https://parceljs.org/) | ||||||
|  | .cache | ||||||
|  | .parcel-cache | ||||||
|  | 
 | ||||||
|  | # Next.js build output | ||||||
|  | .next | ||||||
|  | out | ||||||
|  | 
 | ||||||
|  | # Nuxt.js build / generate output | ||||||
|  | .nuxt | ||||||
|  | dist | ||||||
|  | 
 | ||||||
|  | # Gatsby files | ||||||
|  | .cache/ | ||||||
|  | # Comment in the public line in if your project uses Gatsby and not Next.js | ||||||
|  | # https://nextjs.org/blog/next-9-1#public-directory-support | ||||||
|  | # public | ||||||
|  | 
 | ||||||
|  | # vuepress build output | ||||||
|  | .vuepress/dist | ||||||
|  | 
 | ||||||
|  | # vuepress v2.x temp and cache directory | ||||||
|  | .temp | ||||||
|  | .cache | ||||||
|  | 
 | ||||||
|  | # Docusaurus cache and generated files | ||||||
|  | .docusaurus | ||||||
|  | 
 | ||||||
|  | # Serverless directories | ||||||
|  | .serverless/ | ||||||
|  | 
 | ||||||
|  | # FuseBox cache | ||||||
|  | .fusebox/ | ||||||
|  | 
 | ||||||
|  | # DynamoDB Local files | ||||||
|  | .dynamodb/ | ||||||
|  | 
 | ||||||
|  | # TernJS port file | ||||||
|  | .tern-port | ||||||
|  | 
 | ||||||
|  | # Stores VSCode versions used for testing VSCode extensions | ||||||
|  | .vscode-test | ||||||
|  | 
 | ||||||
|  | # yarn v2 | ||||||
|  | .yarn/cache | ||||||
|  | .yarn/unplugged | ||||||
|  | .yarn/build-state.yml | ||||||
|  | .yarn/install-state.gz | ||||||
|  | .pnp.* | ||||||
|  | @ -0,0 +1,14 @@ | ||||||
|  | Copyright (C) 2024 UNBOUND | ||||||
|  | 
 | ||||||
|  | This program is free software: you can redistribute it and/or modify | ||||||
|  | it under the terms of the GNU Affero General Public License as | ||||||
|  | published by the Free Software Foundation, either version 3 of the | ||||||
|  | License, or (at your option) any later version. | ||||||
|  | 
 | ||||||
|  | This program is distributed in the hope that it will be useful, | ||||||
|  | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||||
|  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||||
|  | GNU Affero General Public License for more details. | ||||||
|  | 
 | ||||||
|  | You should have received a copy of the GNU Affero General Public License | ||||||
|  | along with this program.  If not, see <https://www.gnu.org/licenses/>. | ||||||
|  | @ -0,0 +1,2 @@ | ||||||
|  | // Initalize dotenv to read .env files
 | ||||||
|  | require("dotenv").config(); | ||||||
|  | @ -0,0 +1,284 @@ | ||||||
|  | { | ||||||
|  |   "name": "cx-oss", | ||||||
|  |   "version": "0.0.1", | ||||||
|  |   "lockfileVersion": 3, | ||||||
|  |   "requires": true, | ||||||
|  |   "packages": { | ||||||
|  |     "": { | ||||||
|  |       "name": "cx-oss", | ||||||
|  |       "version": "0.0.1", | ||||||
|  |       "license": "AGPLv3", | ||||||
|  |       "dependencies": { | ||||||
|  |         "discord.js": "^14.14.1", | ||||||
|  |         "dotenv": "^16.4.5" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/@discordjs/builders": { | ||||||
|  |       "version": "1.7.0", | ||||||
|  |       "resolved": "https://registry.npmjs.org/@discordjs/builders/-/builders-1.7.0.tgz", | ||||||
|  |       "integrity": "sha512-GDtbKMkg433cOZur8Dv6c25EHxduNIBsxeHrsRoIM8+AwmEZ8r0tEpckx/sHwTLwQPOF3e2JWloZh9ofCaMfAw==", | ||||||
|  |       "dependencies": { | ||||||
|  |         "@discordjs/formatters": "^0.3.3", | ||||||
|  |         "@discordjs/util": "^1.0.2", | ||||||
|  |         "@sapphire/shapeshift": "^3.9.3", | ||||||
|  |         "discord-api-types": "0.37.61", | ||||||
|  |         "fast-deep-equal": "^3.1.3", | ||||||
|  |         "ts-mixer": "^6.0.3", | ||||||
|  |         "tslib": "^2.6.2" | ||||||
|  |       }, | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=16.11.0" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/@discordjs/collection": { | ||||||
|  |       "version": "1.5.3", | ||||||
|  |       "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-1.5.3.tgz", | ||||||
|  |       "integrity": "sha512-SVb428OMd3WO1paV3rm6tSjM4wC+Kecaa1EUGX7vc6/fddvw/6lg90z4QtCqm21zvVe92vMMDt9+DkIvjXImQQ==", | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=16.11.0" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/@discordjs/formatters": { | ||||||
|  |       "version": "0.3.3", | ||||||
|  |       "resolved": "https://registry.npmjs.org/@discordjs/formatters/-/formatters-0.3.3.tgz", | ||||||
|  |       "integrity": "sha512-wTcI1Q5cps1eSGhl6+6AzzZkBBlVrBdc9IUhJbijRgVjCNIIIZPgqnUj3ntFODsHrdbGU8BEG9XmDQmgEEYn3w==", | ||||||
|  |       "dependencies": { | ||||||
|  |         "discord-api-types": "0.37.61" | ||||||
|  |       }, | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=16.11.0" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/@discordjs/rest": { | ||||||
|  |       "version": "2.2.0", | ||||||
|  |       "resolved": "https://registry.npmjs.org/@discordjs/rest/-/rest-2.2.0.tgz", | ||||||
|  |       "integrity": "sha512-nXm9wT8oqrYFRMEqTXQx9DUTeEtXUDMmnUKIhZn6O2EeDY9VCdwj23XCPq7fkqMPKdF7ldAfeVKyxxFdbZl59A==", | ||||||
|  |       "dependencies": { | ||||||
|  |         "@discordjs/collection": "^2.0.0", | ||||||
|  |         "@discordjs/util": "^1.0.2", | ||||||
|  |         "@sapphire/async-queue": "^1.5.0", | ||||||
|  |         "@sapphire/snowflake": "^3.5.1", | ||||||
|  |         "@vladfrangu/async_event_emitter": "^2.2.2", | ||||||
|  |         "discord-api-types": "0.37.61", | ||||||
|  |         "magic-bytes.js": "^1.5.0", | ||||||
|  |         "tslib": "^2.6.2", | ||||||
|  |         "undici": "5.27.2" | ||||||
|  |       }, | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=16.11.0" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/@discordjs/rest/node_modules/@discordjs/collection": { | ||||||
|  |       "version": "2.0.0", | ||||||
|  |       "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-2.0.0.tgz", | ||||||
|  |       "integrity": "sha512-YTWIXLrf5FsrLMycpMM9Q6vnZoR/lN2AWX23/Cuo8uOOtS8eHB2dyQaaGnaF8aZPYnttf2bkLMcXn/j6JUOi3w==", | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=18" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/@discordjs/util": { | ||||||
|  |       "version": "1.0.2", | ||||||
|  |       "resolved": "https://registry.npmjs.org/@discordjs/util/-/util-1.0.2.tgz", | ||||||
|  |       "integrity": "sha512-IRNbimrmfb75GMNEjyznqM1tkI7HrZOf14njX7tCAAUetyZM1Pr8hX/EK2lxBCOgWDRmigbp24fD1hdMfQK5lw==", | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=16.11.0" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/@discordjs/ws": { | ||||||
|  |       "version": "1.0.2", | ||||||
|  |       "resolved": "https://registry.npmjs.org/@discordjs/ws/-/ws-1.0.2.tgz", | ||||||
|  |       "integrity": "sha512-+XI82Rm2hKnFwAySXEep4A7Kfoowt6weO6381jgW+wVdTpMS/56qCvoXyFRY0slcv7c/U8My2PwIB2/wEaAh7Q==", | ||||||
|  |       "dependencies": { | ||||||
|  |         "@discordjs/collection": "^2.0.0", | ||||||
|  |         "@discordjs/rest": "^2.1.0", | ||||||
|  |         "@discordjs/util": "^1.0.2", | ||||||
|  |         "@sapphire/async-queue": "^1.5.0", | ||||||
|  |         "@types/ws": "^8.5.9", | ||||||
|  |         "@vladfrangu/async_event_emitter": "^2.2.2", | ||||||
|  |         "discord-api-types": "0.37.61", | ||||||
|  |         "tslib": "^2.6.2", | ||||||
|  |         "ws": "^8.14.2" | ||||||
|  |       }, | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=16.11.0" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/@discordjs/ws/node_modules/@discordjs/collection": { | ||||||
|  |       "version": "2.0.0", | ||||||
|  |       "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-2.0.0.tgz", | ||||||
|  |       "integrity": "sha512-YTWIXLrf5FsrLMycpMM9Q6vnZoR/lN2AWX23/Cuo8uOOtS8eHB2dyQaaGnaF8aZPYnttf2bkLMcXn/j6JUOi3w==", | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=18" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/@fastify/busboy": { | ||||||
|  |       "version": "2.1.1", | ||||||
|  |       "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.1.tgz", | ||||||
|  |       "integrity": "sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==", | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=14" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/@sapphire/async-queue": { | ||||||
|  |       "version": "1.5.2", | ||||||
|  |       "resolved": "https://registry.npmjs.org/@sapphire/async-queue/-/async-queue-1.5.2.tgz", | ||||||
|  |       "integrity": "sha512-7X7FFAA4DngXUl95+hYbUF19bp1LGiffjJtu7ygrZrbdCSsdDDBaSjB7Akw0ZbOu6k0xpXyljnJ6/RZUvLfRdg==", | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=v14.0.0", | ||||||
|  |         "npm": ">=7.0.0" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/@sapphire/shapeshift": { | ||||||
|  |       "version": "3.9.6", | ||||||
|  |       "resolved": "https://registry.npmjs.org/@sapphire/shapeshift/-/shapeshift-3.9.6.tgz", | ||||||
|  |       "integrity": "sha512-4+Na/fxu2SEepZRb9z0dbsVh59QtwPuBg/UVaDib3av7ZY14b14+z09z6QVn0P6Dv6eOU2NDTsjIi0mbtgP56g==", | ||||||
|  |       "dependencies": { | ||||||
|  |         "fast-deep-equal": "^3.1.3", | ||||||
|  |         "lodash": "^4.17.21" | ||||||
|  |       }, | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=v18" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/@sapphire/snowflake": { | ||||||
|  |       "version": "3.5.1", | ||||||
|  |       "resolved": "https://registry.npmjs.org/@sapphire/snowflake/-/snowflake-3.5.1.tgz", | ||||||
|  |       "integrity": "sha512-BxcYGzgEsdlG0dKAyOm0ehLGm2CafIrfQTZGWgkfKYbj+pNNsorZ7EotuZukc2MT70E0UbppVbtpBrqpzVzjNA==", | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=v14.0.0", | ||||||
|  |         "npm": ">=7.0.0" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/@types/node": { | ||||||
|  |       "version": "20.11.24", | ||||||
|  |       "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.24.tgz", | ||||||
|  |       "integrity": "sha512-Kza43ewS3xoLgCEpQrsT+xRo/EJej1y0kVYGiLFE1NEODXGzTfwiC6tXTLMQskn1X4/Rjlh0MQUvx9W+L9long==", | ||||||
|  |       "dependencies": { | ||||||
|  |         "undici-types": "~5.26.4" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/@types/ws": { | ||||||
|  |       "version": "8.5.9", | ||||||
|  |       "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.9.tgz", | ||||||
|  |       "integrity": "sha512-jbdrY0a8lxfdTp/+r7Z4CkycbOFN8WX+IOchLJr3juT/xzbJ8URyTVSJ/hvNdadTgM1mnedb47n+Y31GsFnQlg==", | ||||||
|  |       "dependencies": { | ||||||
|  |         "@types/node": "*" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/@vladfrangu/async_event_emitter": { | ||||||
|  |       "version": "2.2.4", | ||||||
|  |       "resolved": "https://registry.npmjs.org/@vladfrangu/async_event_emitter/-/async_event_emitter-2.2.4.tgz", | ||||||
|  |       "integrity": "sha512-ButUPz9E9cXMLgvAW8aLAKKJJsPu1dY1/l/E8xzLFuysowXygs6GBcyunK9rnGC4zTsnIc2mQo71rGw9U+Ykug==", | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=v14.0.0", | ||||||
|  |         "npm": ">=7.0.0" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/discord-api-types": { | ||||||
|  |       "version": "0.37.61", | ||||||
|  |       "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.37.61.tgz", | ||||||
|  |       "integrity": "sha512-o/dXNFfhBpYHpQFdT6FWzeO7pKc838QeeZ9d91CfVAtpr5XLK4B/zYxQbYgPdoMiTDvJfzcsLW5naXgmHGDNXw==" | ||||||
|  |     }, | ||||||
|  |     "node_modules/discord.js": { | ||||||
|  |       "version": "14.14.1", | ||||||
|  |       "resolved": "https://registry.npmjs.org/discord.js/-/discord.js-14.14.1.tgz", | ||||||
|  |       "integrity": "sha512-/hUVzkIerxKHyRKopJy5xejp4MYKDPTszAnpYxzVVv4qJYf+Tkt+jnT2N29PIPschicaEEpXwF2ARrTYHYwQ5w==", | ||||||
|  |       "dependencies": { | ||||||
|  |         "@discordjs/builders": "^1.7.0", | ||||||
|  |         "@discordjs/collection": "1.5.3", | ||||||
|  |         "@discordjs/formatters": "^0.3.3", | ||||||
|  |         "@discordjs/rest": "^2.1.0", | ||||||
|  |         "@discordjs/util": "^1.0.2", | ||||||
|  |         "@discordjs/ws": "^1.0.2", | ||||||
|  |         "@sapphire/snowflake": "3.5.1", | ||||||
|  |         "@types/ws": "8.5.9", | ||||||
|  |         "discord-api-types": "0.37.61", | ||||||
|  |         "fast-deep-equal": "3.1.3", | ||||||
|  |         "lodash.snakecase": "4.1.1", | ||||||
|  |         "tslib": "2.6.2", | ||||||
|  |         "undici": "5.27.2", | ||||||
|  |         "ws": "8.14.2" | ||||||
|  |       }, | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=16.11.0" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/dotenv": { | ||||||
|  |       "version": "16.4.5", | ||||||
|  |       "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", | ||||||
|  |       "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=12" | ||||||
|  |       }, | ||||||
|  |       "funding": { | ||||||
|  |         "url": "https://dotenvx.com" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/fast-deep-equal": { | ||||||
|  |       "version": "3.1.3", | ||||||
|  |       "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", | ||||||
|  |       "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" | ||||||
|  |     }, | ||||||
|  |     "node_modules/lodash": { | ||||||
|  |       "version": "4.17.21", | ||||||
|  |       "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", | ||||||
|  |       "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" | ||||||
|  |     }, | ||||||
|  |     "node_modules/lodash.snakecase": { | ||||||
|  |       "version": "4.1.1", | ||||||
|  |       "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", | ||||||
|  |       "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==" | ||||||
|  |     }, | ||||||
|  |     "node_modules/magic-bytes.js": { | ||||||
|  |       "version": "1.10.0", | ||||||
|  |       "resolved": "https://registry.npmjs.org/magic-bytes.js/-/magic-bytes.js-1.10.0.tgz", | ||||||
|  |       "integrity": "sha512-/k20Lg2q8LE5xiaaSkMXk4sfvI+9EGEykFS4b0CHHGWqDYU0bGUFSwchNOMA56D7TCs9GwVTkqe9als1/ns8UQ==" | ||||||
|  |     }, | ||||||
|  |     "node_modules/ts-mixer": { | ||||||
|  |       "version": "6.0.4", | ||||||
|  |       "resolved": "https://registry.npmjs.org/ts-mixer/-/ts-mixer-6.0.4.tgz", | ||||||
|  |       "integrity": "sha512-ufKpbmrugz5Aou4wcr5Wc1UUFWOLhq+Fm6qa6P0w0K5Qw2yhaUoiWszhCVuNQyNwrlGiscHOmqYoAox1PtvgjA==" | ||||||
|  |     }, | ||||||
|  |     "node_modules/tslib": { | ||||||
|  |       "version": "2.6.2", | ||||||
|  |       "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", | ||||||
|  |       "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" | ||||||
|  |     }, | ||||||
|  |     "node_modules/undici": { | ||||||
|  |       "version": "5.27.2", | ||||||
|  |       "resolved": "https://registry.npmjs.org/undici/-/undici-5.27.2.tgz", | ||||||
|  |       "integrity": "sha512-iS857PdOEy/y3wlM3yRp+6SNQQ6xU0mmZcwRSriqk+et/cwWAtwmIGf6WkoDN2EK/AMdCO/dfXzIwi+rFMrjjQ==", | ||||||
|  |       "dependencies": { | ||||||
|  |         "@fastify/busboy": "^2.0.0" | ||||||
|  |       }, | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=14.0" | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     "node_modules/undici-types": { | ||||||
|  |       "version": "5.26.5", | ||||||
|  |       "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", | ||||||
|  |       "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" | ||||||
|  |     }, | ||||||
|  |     "node_modules/ws": { | ||||||
|  |       "version": "8.14.2", | ||||||
|  |       "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", | ||||||
|  |       "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">=10.0.0" | ||||||
|  |       }, | ||||||
|  |       "peerDependencies": { | ||||||
|  |         "bufferutil": "^4.0.1", | ||||||
|  |         "utf-8-validate": ">=5.0.2" | ||||||
|  |       }, | ||||||
|  |       "peerDependenciesMeta": { | ||||||
|  |         "bufferutil": { | ||||||
|  |           "optional": true | ||||||
|  |         }, | ||||||
|  |         "utf-8-validate": { | ||||||
|  |           "optional": true | ||||||
|  |         } | ||||||
|  |       } | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,19 @@ | ||||||
|  | { | ||||||
|  |   "name": "cx-oss", | ||||||
|  |   "version": "0.0.1", | ||||||
|  |   "description": "ConnectX Xantic", | ||||||
|  |   "main": "index.js", | ||||||
|  |   "scripts": { | ||||||
|  |     "test": "node index" | ||||||
|  |   }, | ||||||
|  |   "keywords": [ | ||||||
|  |     "cx", | ||||||
|  |     "multiserver" | ||||||
|  |   ], | ||||||
|  |   "author": "Unbound", | ||||||
|  |   "license": "AGPLv3", | ||||||
|  |   "dependencies": { | ||||||
|  |     "discord.js": "^14.14.1", | ||||||
|  |     "dotenv": "^16.4.5" | ||||||
|  |   } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,7 @@ | ||||||
|  | // Configuration to be used in Production Mode
 | ||||||
|  | module.exports = { | ||||||
|  |     // Discord Bot Token **It's not recommend to put it here**,
 | ||||||
|  |     discord_token: process.env['discord_token'] || "", | ||||||
|  |     // Discord Bot Client Id **It's not recommend to put it here**,
 | ||||||
|  |     discord_client_id: process.env['discord_client_id'] || "" | ||||||
|  | } | ||||||
		Loading…
	
		Reference in New Issue