mirror of
https://github.com/Team-Neptune/Korral-Interactions.git
synced 2024-11-23 12:49:40 +00:00
29b2468397
* [Feature] Updated `sd` command to specify OS Adds the option to specify which OS the user is using. * Updated SD message to add more detail Added hekate starting in text mode as a possible symptom for incorrect SD card layout. * Update index.ts * [chore] Dynamically show categories * [chore] Catch error with fetching builder api data * [chore] Remove unnecessary code * [Feature] `hekatesdmount` command * [chore] Add try/catch for deepsea release api * Update index.d.ts * Update tsconfig.json * Move all commands to their own file * Add Command class * Add command files * Add button interaction files * Add ButtonCommand class * Add selects interaction files * Update deepsea.ts * Update lmgtfy.ts * Remove unneeded builder eventemitter * Rename builderStore to builder.ts * Remove unused comments * update import for BuilderStore * Update index.d.ts * Update references to BuilderStore to Builder * remove unused comments * rename builderStore to builder * Move builder.on("new", ...) to method on Builder class * Fix double declaration, change to use Builder#startSession * Remove double declaration * Remove unused code * Update package.json * 2.0.0
26 lines
658 B
JSON
26 lines
658 B
JSON
{
|
|
"name": "korral-interactions",
|
|
"version": "2.0.0",
|
|
"description": "The Express webserver for the interactions of Korral in the Team Neptune Discord server.",
|
|
"main": "out/src/index.js",
|
|
"types": "typings/",
|
|
"dependencies": {
|
|
"discord-interactions": "^2.3.0",
|
|
"express": "^4.17.1",
|
|
"node-fetch": "^2.6.1",
|
|
"typescript": "^4.3.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.12",
|
|
"@types/node": "^15.12.4",
|
|
"@types/node-fetch": "^2.5.11"
|
|
},
|
|
"scripts": {
|
|
"start": "node out/src/index.js",
|
|
"build": "tsc --build tsconfig.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "TechGeekGamer",
|
|
"license": "ISC"
|
|
}
|