-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.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
{
"name": "sapphire-bot",
"version": "2.0.0",
"packageManager": "yarn@3.8.7",
"private": true,
"license": "MIT",
"main": "dist/Bot.js",
"imports": {
"#root/*": "./dist/*.js",
"#lib/*": "./dist/lib/*.js"
},
"type": "module",
"scripts": {
"start": "node dist/Bot.js --enable-source-maps",
"build": "tsc -b src",
"watch": "yarn tsc-watch -b src --onSuccess \"yarn start\"",
"format": "prettier --write --loglevel=warn \"src/**/*.{js,ts,json}\"",
"postinstall": "husky install .github/husky"
},
"dependencies": {
"@skyra/env-utilities": "^2.0.0",
"@skyra/http-framework": "1.2.2",
"@skyra/logger": "^2.0.3",
"colorette": "^2.0.20",
"discord.js": "^14.15.3"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^24.0.0",
"discord-api-types": "0.38.42",
"husky": "^9.0.11",
"prettier": "^3.3.2",
"pretty-quick": "^4.0.0",
"tsc-watch": "^7.0.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.x.x"
},
"prettier": "@sapphire/prettier-config",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}