forked from AstrBotDevs/AstrBot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 890 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "astrbot-repo-tooling",
"version": "0.0.0",
"private": true,
"description": "Dev-only toolchain for repo-wide formatting and linting (see `make check` / `make format`). Not published.",
"scripts": {
"format:data": "prettier --write \"**/*.{json,jsonc,css,scss,html,yml,yaml}\"",
"check:data": "prettier --check \"**/*.{json,jsonc,css,scss,html,yml,yaml}\"",
"format:md": "prettier --write \"**/*.md\"",
"check:md": "prettier --check \"**/*.md\" && markdownlint-cli2 \"**/*.md\"",
"format:toml": "taplo fmt",
"check:toml": "taplo fmt --check && taplo lint"
},
"devDependencies": {
"@taplo/cli": "0.7.0",
"markdownlint-cli2": "0.23.2",
"prettier": "3.9.8"
},
"packageManager": "npm@12.0.2+sha512.b885e890b9418fa1693544d05f53e64f9a73ec194837d4258b15fecdd692347b1dd2a517b1b0cbaf9d31cd8e92c3b70956bd2ecc72833a57b4b3098f5bfa7943"
}