-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 696 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 696 Bytes
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
{
"name": "awesome-sapphire",
"version": "1.0.0",
"author": "Sapphire Community",
"license": "CC0-1.0",
"private": true,
"scripts": {
"lint": "markdownlint-cli2-fix",
"lint:no-fix": "markdownlint-cli2",
"format": "prettier --write \"*.md\"",
"format:check": "prettier --check \"*.md\"",
"update": "yarn upgrade-interactive"
},
"devDependencies": {
"@sapphire/prettier-config": "^2.0.0",
"lint-staged": "^16.2.6",
"markdownlint": "^0.39.0",
"markdownlint-cli2": "^0.18.1",
"prettier": "^3.6.2"
},
"resolutions": {
"ansi-regex": "^6.2.2",
"minimist": "^1.2.8"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"packageManager": "yarn@4.11.0"
}