-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.62 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
{
"name": "sandbot",
"version": "0.0.1",
"main": "dist/index.js",
"author": "@sapphire",
"license": "UNLICENSE",
"type": "commonjs",
"dependencies": {
"@eslint/js": "^9.39.1",
"@eslint/json": "^0.14.0",
"@eslint/markdown": "^7.5.1",
"@sapphire/decorators": "^6.1.1",
"@sapphire/discord-utilities": "^3.4.4",
"@sapphire/discord.js-utilities": "^7.3.3",
"@sapphire/fetch": "^3.0.5",
"@sapphire/framework": "^5.3.2",
"@sapphire/plugin-api": "^8.0.0",
"@sapphire/plugin-editable-commands": "^4.0.4",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/plugin-subcommands": "^7.0.1",
"@sapphire/plugin-utilities-store": "^2.0.3",
"@sapphire/time-utilities": "^1.7.14",
"@sapphire/type": "^2.6.0",
"@sapphire/utilities": "^3.18.1",
"@skyra/env-utilities": "^1.3.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"colorette": "^2.0.20",
"discord.js": "^14.17.3",
"prettier-plugin-sort-json": "^4.1.1",
"typescript-eslint": "^8.46.3",
"zod": "^4.1.12"
},
"devDependencies": {
"@sapphire/cli": "^1.9.3",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^22.10.7",
"@types/ws": "^8.5.13",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"tsc-watch": "^6.3.0",
"typescript": "~5.4.5"
},
"scripts": {
"sapphire": "sapphire",
"generate": "sapphire generate",
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "run-s build start",
"watch:start": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"format": "prettier --write \"src/**/*.ts\""
},
"prettier": "@sapphire/prettier-config",
"packageManager": "pnpm@10.20.0"
}