-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
96 lines (96 loc) · 2.72 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "swan",
"version": "4.0.0",
"description": "Bot discord de Skript-MC.",
"main": "dist/src/main.js",
"type": "module",
"imports": {
"#app/*": "./dist/src/*.js",
"#config/*": "./dist/config/*.js",
"#models/*": "./dist/src/models/*.js",
"#moderation/*": "./dist/src/moderation/*.js",
"#resolvers/*": "./dist/src/resolvers/*.js",
"#structures/*": "./dist/src/structures/*.js",
"#types/*": "./dist/src/types/*.js",
"#utils/*": "./dist/src/utils/*.js"
},
"scripts": {
"clean": "rimraf dist/",
"build": "tsup",
"watch": "tsup --watch",
"start": "node --enable-source-maps ./dist/src/main.js",
"dev": "tsup --watch --onSuccess \"npm start\"",
"typecheck": "tsc -p tsconfig.json",
"tools:update-databases": "node tools/update-databases.js",
"tools:remove-commands": "node tools/remove-commands.js",
"lint": "biome lint .",
"lint:fix": "biome lint --apply .",
"format": "biome format . --write",
"check": "biome check .",
"check:fix": "biome check --apply ."
},
"authors": [
"noftaly (@noftaly)",
"Romitou (@romitou)"
],
"contributors": [
"Olyno (@olyno)",
"WeeskyBDW (@weeskybdw)",
"Aless (@alessevan)",
"Skylyxx (@skylyxx)",
"iTrooz_ (@itrooz)"
],
"license": "GPL-3.0-only",
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://github.com/Skript-MC/Swan#readme",
"bugs": {
"url": "https://github.com/Skript-MC/Swan/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Skript-MC/Swan.git"
},
"dependencies": {
"@octokit/rest": "^20.1.1",
"@octokit/types": "^13.5.0",
"@sapphire/decorators": "^6.1.0",
"@sapphire/discord-utilities": "^3.3.0",
"@sapphire/discord.js-utilities": "^7.3.0",
"@sapphire/framework": "^5.2.1",
"@sapphire/pieces": "^4.2.2",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/utilities": "^3.16.2",
"@sentry/node": "^8.8.0",
"axios": "^1.7.2",
"common-tags": "^1.8.2",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"fastest-levenshtein": "^1.0.16",
"he": "^1.2.0",
"moment": "^2.30.1",
"mongoose": "^8.4.1",
"mongoose-autopopulate": "^1.1.0",
"nanoid": "^5.0.7",
"node-cron": "^3.0.3",
"node-emoji": "^2.1.3",
"pupa": "^3.1.0",
"reflect-metadata": "^0.2.2",
"semver": "^7.6.2",
"turndown": "^7.2.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.0",
"@sapphire/ts-config": "^5.0.1",
"@types/common-tags": "^1.8.4",
"@types/he": "^1.2.3",
"@types/node": "^20.14.2",
"@types/node-cron": "^3.0.11",
"@types/semver": "^7.5.8",
"@types/turndown": "^5.0.4",
"rimraf": "^5.0.7",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
}
}