-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8439aad
commit dfad324
Showing
2 changed files
with
12 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,8 @@ | |
"displayName": "Discord Stonker Bot", | ||
"version": "3.4.3", | ||
"description": "An advanced business-ready bot built for finance-related Discord servers", | ||
"exports": "./build/src/index.js", | ||
"main": "./build/index.js", | ||
"exports": "./build/index.js", | ||
"type": "module", | ||
"private": true, | ||
"scripts": { | ||
|
@@ -12,6 +13,7 @@ | |
"build:tsc": "tsc --build", | ||
"build:copyfiles": "copyfiles \"src/views/invites.ejs\" \"invites.ejs\" \"config.json\" build" | ||
}, | ||
"types": "", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/mrjackyliang/discord-stonker-bot.git" | ||
|
@@ -48,15 +50,19 @@ | |
"toggle-permissions", | ||
"twitter-feed" | ||
], | ||
"author": "Jacky Liang", | ||
"author": { | ||
"name": "Jacky Liang", | ||
"email": "[email protected]", | ||
"url": "https://www.mrjackyliang.com" | ||
}, | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/mrjackyliang/discord-stonker-bot/issues" | ||
}, | ||
"files": [], | ||
"homepage": "https://github.com/mrjackyliang/discord-stonker-bot", | ||
"engines": { | ||
"node": "^18.12.1" | ||
"node": ">=18" | ||
}, | ||
"dependencies": { | ||
"axios": "1.3.2", | ||
|