-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.14 KB
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
{
"name": "sunshinediscordbot",
"type": "module",
"private": true,
"main": "src/index.ts",
"scripts": {
"dev": "bun --watch src/index.ts",
"generate:openapi": "dotenv -e .env -- openapi-ts",
"lint": "eslint --fix",
"lint:check": "eslint",
"start": "bun src/index.ts"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@faker-js/faker": "^9.9.0",
"@sapphire/decorators": "^6.2.0",
"@sapphire/discord.js-utilities": "^7.3.3",
"@sapphire/framework": "^5.3.6",
"@sapphire/plugin-logger": "^4.1.0",
"@sapphire/plugin-subcommands": "^7.0.1",
"@sapphire/plugin-utilities-store": "^2.0.3",
"@sapphire/time-utilities": "^1.7.14",
"@sapphire/utilities": "^3.18.2",
"bun-sqlite-migrations": "^1.0.2",
"discord.js": "^14.21.0",
"fast-average-color-node": "^3.1.0"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.78.1",
"@richardscull/eslint-config": "^1.0.6",
"@types/bun": "latest",
"dotenv-cli": "^8.0.0",
"eslint": "^9.39.2",
"jiti": "^2.6.1",
"lint-staged": "^16.2.7",
"simple-git-hooks": "^2.13.1",
"typescript": "^5"
}
}