This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.5 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "cruise-bot",
"version": "0.1.0",
"description": "An open-source multipurpose discord bot, that does everything!",
"main": "dist/launch.js",
"scripts": {
"prestart": "yarn build",
"start": "node dist/launch.js",
"prebuild": "rimraf dist/",
"build": "tsc",
"dev": "nodemon --exec ts-node src/launch.ts --watch ./ -e ts,json --ignore dist",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/CeruleanCodersComm/cruise-bot.git"
},
"keywords": [
"discord-bot",
"discord",
"discord.js",
"sapphire"
],
"author": "CeruleanCodersComm",
"license": "MIT",
"bugs": {
"url": "https://github.com/CeruleanCodersComm/cruise-bot/issues"
},
"homepage": "https://github.com/CeruleanCodersComm/cruise-bot#readme",
"devDependencies": {
"@sapphire/decorators": "^3.1.4",
"@sapphire/plugin-subcommands": "^2.1.2",
"@types/node": "^16.11.13",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"tsc": "^2.0.3",
"typescript": "^4.6.0-dev.20211216"
},
"dependencies": {
"@sapphire/framework": "^2.2.1",
"@sapphire/plugin-logger": "^2.1.1",
"discord.js": "^13.3.1",
"dotenv": "^10.0.0"
}
}