-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.91 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.91 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "hilda",
"version": "0.0.0",
"description": "Hilda meme bot",
"main": "dist/Hilda.js",
"author": "KunoichiZ",
"license": "Apache-2.0",
"private": true,
"keywords": [
"discord",
"discordjs",
"discord-bot",
"sapphire",
"hilda",
"fire-emblem-three-houses",
"fire-emblem",
"three-houses"
],
"scripts": {
"build": "tsc -b src",
"dev": "yarn build && yarn start",
"lint": "eslint --fix src --ext ts",
"start": "node dist/Hilda.js",
"start2": "run-s build start",
"watch": "tsc-watch -b src --onSuccess \"node dist/Hilda.js\""
},
"dependencies": {
"@sapphire/decorators": "^6.2.0",
"@sapphire/discord-utilities": "^4.0.0",
"@sapphire/discord.js-utilities": "next",
"@sapphire/fetch": "^3.0.5",
"@sapphire/framework": "^3.1.1",
"@sapphire/pieces": "^3.5.1",
"@sapphire/plugin-api": "^5.1.2",
"@sapphire/plugin-editable-commands": "^4.0.4",
"@sapphire/plugin-logger": "^4.1.0",
"@sapphire/plugin-scheduled-tasks": "^10.0.4",
"@sapphire/plugin-subcommands": "^7.0.1",
"@sapphire/stopwatch": "^1.5.4",
"@sapphire/time-utilities": "^1.7.14",
"@sapphire/type": "^2.6.0",
"@sapphire/utilities": "^3.18.2",
"colorette": "^2.0.20",
"common-tags": "^1.8.2",
"discord-api-types": "^0.33.5",
"discord.js": "^13.10.2",
"dotenv-cra": "^3.0.3",
"redis": "^5.12.1",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@prisma/client": "^7.8.0",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^3.3.4",
"@types/common-tags": "^1.8.4",
"@types/node": "^25.9.1",
"@types/ws": "^8.18.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.3",
"prisma": "^6.12.0",
"tsc-watch": "^7.2.0",
"typescript": "^4.9.5"
},
"imports": {
"#data/*": "./dist/lib/data/*.js",
"#database/*": "./dist/lib/database/*.js",
"#lib/*": "./dist/lib/*.js",
"#root/*": "./dist/*.js",
"#utils/*": "./dist/lib/utils/*.js"
},
"prettier": "@sapphire/prettier-config"
}