-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.55 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
{
"name": "test-track",
"version": "1.1.0",
"main": "./dist/index.js",
"license": "UNLICENSE",
"type": "module",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "run-s build start",
"format": "biome format --write . --diagnostic-level=warn",
"lint": "biome check . --apply --diagnostic-level=warn",
"pretty": "pnpm run format && pnpm run lint"
},
"dependencies": {
"@sapphire/discord-utilities": "^3.2.1",
"@sapphire/discord.js-utilities": "7.1.5",
"@sapphire/fetch": "^3.0.1",
"@sapphire/framework": "^5.0.5",
"@sapphire/pieces": "^4.2.0",
"@sapphire/plugin-api": "^6.1.0",
"@sapphire/plugin-editable-commands": "^4.0.1",
"@sapphire/plugin-logger": "^4.0.1",
"@sapphire/plugin-subcommands": "^6.0.2",
"@sapphire/stopwatch": "^1.5.1",
"@sapphire/time-utilities": "^1.7.11",
"@sapphire/type": "^2.4.3",
"@sapphire/utilities": "^3.15.2",
"@skyra/env-utilities": "^1.3.0",
"@types/benchmark": "^2.1.5",
"benchmark": "^2.1.4",
"colorette": "^2.0.20",
"discord-api-types": "^0.37.67",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"global": "^4.4.0",
"nanoid": "^5.0.4",
"tslib": "^2.6.2"
},
"devDependencies": {
"@biomejs/biome": "^1.5.0",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.0",
"@types/node": "^20.10.7",
"@types/ws": "^8.5.10",
"npm-run-all2": "^5.0.0",
"prettier": "^3.1.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
},
"prettier": "@sapphire/prettier-config",
"engines": {
"node": ">=16.9.0"
}
}