-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.19 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
{
"name": "ogden",
"version": "2.0.0",
"main": "dist/index.js",
"author": "Pandraghon",
"license": "MIT",
"type": "module",
"scripts": {
"sapphire": "sapphire",
"generate": "sapphire generate",
"build": "tsc -b src",
"watch": "tsc -b src -w",
"start": "node --enable-source-maps dist/index.js",
"dev": "yarn build && yarn start",
"watch:start": "tsc-watch -b src --onSuccess \"yarn start\"",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"@sapphire/decorators": "^6.2.0",
"@sapphire/discord-utilities": "^3.5.0",
"@sapphire/discord.js-utilities": "7.3.3",
"@sapphire/fetch": "^3.0.5",
"@sapphire/framework": "^5.3.7",
"@sapphire/plugin-api": "^8.3.1",
"@sapphire/plugin-editable-commands": "^4.0.4",
"@sapphire/plugin-i18next": "^8.0.0",
"@sapphire/plugin-logger": "^4.1.0",
"@sapphire/plugin-subcommands": "^7.0.1",
"@sapphire/time-utilities": "^1.7.14",
"@sapphire/type": "^2.6.0",
"@sapphire/utilities": "^3.18.2",
"@skyra/env-utilities": "^2.0.1",
"colorette": "^2.0.20",
"discord.js": "^14.22.1",
"modern-diacritics": "^2.3.1",
"pg": "^8.16.3",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.27"
},
"devDependencies": {
"@sapphire/cli": "^1.9.3",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^24.5.2",
"@types/ws": "^8.18.1",
"npm-run-all2": "^8.0.4",
"prettier": "^3.6.2",
"tsc-watch": "^7.1.1",
"typescript": "~5.9.2"
},
"imports": {
"#lib/database/entities": "./dist/lib/database/entities/index.js",
"#lib/database/settings": "./dist/lib/database/settings/index.js",
"#lib/database/repositories": "./dist/lib/database/repositories/index.js",
"#lib/database": "./dist/lib/database/index.js",
"#lib/structures/managers": "./dist/lib/structures/managers/index.js",
"#lib/structures/pieces": "./dist/lib/structures/pieces/index.js",
"#lib/structures": "./dist/lib/structures/index.js",
"#lib/types": "./dist/lib/types/index.js",
"#lib/*": "./dist/lib/*.js",
"#root/*": "./dist/*.js"
},
"prettier": "@sapphire/prettier-config",
"packageManager": "yarn@4.9.1"
}