-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"name": "trellis-docs",
"version": "1.0.0",
"description": "Trellis Documentation Website - Built with Mintlify",
"private": true,
"scripts": {
"dev": "mintlify dev",
"verify": "python3 .trellis/scripts/verify-docs.py",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . && markdownlint-cli2 '**/*.{md,mdx}'",
"lint:md": "markdownlint-cli2 '**/*.{md,mdx}'",
"lint:js": "eslint .",
"prepare": "husky"
},
"lint-staged": {
"*.{md,mdx}": [
"markdownlint-cli2 --fix",
"prettier --write"
],
"*.{json,yaml,yml}": [
"prettier --write"
],
"*.{js,mjs,cjs}": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"trellis",
"documentation",
"mintlify"
],
"author": "Mindfold",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^20.4.0",
"@commitlint/config-conventional": "^20.4.0",
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"markdownlint-cli2": "^0.20.0",
"prettier": "^3.8.1"
}
}