Korral-Interactions/package.json
Daniel 29b2468397
Code cleanup 🧹 (#7)
* [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
2021-09-01 16:17:14 -07:00

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"
}