-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.71 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
{
"name": "test-track",
"version": "1.0.1",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"author": "@sapphire",
"license": "UNLICENSE",
"type": "module",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "run-s build start",
"prettier": "prettier --write \"src/**/*.ts\"",
"pretty": "rome check . --apply-suggested && rome format . --write",
"predocker:watch": "npm install",
"docker:watch": "tsc-watch --onSuccess \"node ./dist/index.js\""
},
"dependencies": {
"@sapphire/decorators": "^6.0.2",
"@sapphire/discord-utilities": "^3.0.2",
"@sapphire/discord.js-utilities": "7.0.0",
"@sapphire/fetch": "^2.4.1",
"@sapphire/framework": "^4.5.1",
"@sapphire/pieces": "^3.6.1",
"@sapphire/plugin-api": "^5.1.0",
"@sapphire/plugin-editable-commands": "^3.0.2",
"@sapphire/plugin-logger": "^3.0.5",
"@sapphire/plugin-subcommands": "^4.0.2",
"@sapphire/stopwatch": "^1.5.0",
"@sapphire/time-utilities": "^1.7.10",
"@sapphire/type": "^2.4.0",
"@sapphire/utilities": "^3.11.1",
"@skyra/env-utilities": "^1.2.1",
"@types/benchmark": "^2.1.2",
"benchmark": "^2.1.4",
"colorette": "^2.0.20",
"discord-api-types": "^0.37.36",
"discord.js": "^14.11.0",
"dotenv": "^16.1.4",
"eslint": "^8.45.0",
"global": "^4.4.0",
"global-kill": "^1.0.1",
"nanoid": "^4.0.1",
"rome": "^12.1.2",
"tslib": "^2.5.0"
},
"devDependencies": {
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^4.0.1",
"@types/node": "^18.17.0",
"@types/ws": "^8.5.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"tsc-watch": "^6.0.4",
"typescript": "^5.0.4"
},
"prettier": "@sapphire/prettier-config",
"engines": {
"node": ">=16.9.0"
}
}