-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.68 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
{
"name": "@kingsworld/sapphire-plugins",
"author": "Seren_Modz 21 <seren@kings-world.net>",
"repository": "github://Kings-World/sapphire-plugins",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf --glob \"packages/**/dist\" \"packages/**/.turbo\"",
"lint": "eslint packages --ext mjs,js,ts,tsx --fix",
"format": "prettier --write \"packages/**/{src,tests,scripts}/**/*.{mjs,ts,js}\"",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"check-update": "turbo run check-update"
},
"devDependencies": {
"@commitlint/cli": "21.2.2",
"@commitlint/config-conventional": "21.2.2",
"@favware/npm-deprecate": "2.0.0",
"@sapphire/eslint-config": "5.0.6",
"@sapphire/framework": "5.5.1",
"@sapphire/pieces": "4.4.1",
"@sapphire/prettier-config": "2.0.0",
"@sapphire/ts-config": "5.0.3",
"@types/node": "catalog:",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"cz-conventional-changelog": "3.3.0",
"discord.js": "14.27.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.6",
"lint-staged": "17.4.1",
"prettier": "3.9.6",
"rimraf": "6.1.3",
"tsdown": "catalog:",
"turbo": "2.10.12",
"typescript": "catalog:",
"unplugin-replace": "0.9.0",
"unrun": "0.3.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": "@sapphire/prettier-config",
"packageManager": "yarn@4.18.0"
}