-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 975 Bytes
/
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
{
"name": "sapphire-boilerplate",
"description": "A simple boilerplate for Sapphire framework",
"version": "1.0.1",
"type": "commonjs",
"main": "dist/index.js",
"scripts": {
"clear": "rm -rf dist",
"build": "pnpm run clear && tspc",
"start": "node .",
"dev": "pnpm run build && pnpm run start",
"format": "prettier --write \"src/\"",
"prepare": "husky"
},
"dependencies": {
"@sapphire/decorators": "^6.1.0",
"@sapphire/framework": "^5.2.1",
"@sapphire/plugin-logger": "^4.0.2",
"@skyra/env-utilities": "^1.3.0",
"discord.js": "^14.15.3"
},
"devDependencies": {
"@sapphire/ts-config": "^5.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"ts-patch": "^3.2.1",
"typescript": "~5.4.5",
"typescript-transform-paths": "^3.4.10"
},
"lint-staged": {
"src/**/*.ts": [
"pnpm run format"
]
}
}