-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 899 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 899 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
30
{
"name": "ancplua-docs",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "mint dev",
"format": "prettier --write \"**/*.{mdx,md,json,yaml,yml}\"",
"format:check": "prettier --check \"**/*.{mdx,md,json,yaml,yml}\"",
"lint": "npm run lint:nav && npm run lint:links && npm run lint:a11y && npm run lint:openapi",
"lint:nav": "node scripts/validate-nav.mjs",
"lint:links": "mint broken-links",
"lint:a11y": "mint a11y",
"lint:openapi": "mint openapi-check api-reference/openapi.yaml",
"validate": "npm run lint && npm run format:check",
"validate:quick": "npm run lint:links",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"mint": "^4.2.521",
"prettier": "^3.8.3"
},
"lint-staged": {
"*.{mdx,md,json,yaml,yml}": [
"prettier --write"
]
}
}