-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
52 lines (52 loc) · 1.51 KB
/
package.json
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
{
"name": "coder-docs",
"description": "Documentation for Coder",
"homepage": "https://coder.com/docs",
"bugs": {
"url": "https://github.com/coder/docs/issues",
"email": "[email protected]"
},
"license": "UNLICENSED",
"scripts": {
"prepare": "husky install",
"format:check": "prettier --check '**/*.{css,html,js,json,jsx,ts,tsx,yaml,yml}'",
"format:write": "prettier --write '**/*.{css,html,js,json,jsx,ts,tsx,yaml,yml}'",
"lint": "markdownlint --config .markdownlint.jsonc --rules .markdownlint-rules '**/*.md'",
"lint:fix": "markdownlint --config .markdownlint.jsonc --rules .markdownlint-rules --fix '**/*.md'"
},
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/node": "14.18.53",
"@types/semver-compare": "^1.0.1",
"all-contributors-cli": "^6.26.1",
"husky": "^8.0.3",
"lint-staged": "^13.0.3",
"markdownlint-cli": "^0.34.0",
"lint-staged": "^13.2.3",
"markdownlint-cli": "^0.33.0",
"minimist": "^1.2.8",
"prettier": "3.0.3",
"semver-compare": "^1.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": "^14.17.6"
},
"private": true,
"lint-staged": {
"*.{css,html,js,json,jsx,ts,tsx,yaml,yml}": [
"prettier --write"
],
"*.md": [
"markdownlint --config .markdownlint.jsonc --rules .markdownlint-rules --fix",
"prettier --write"
],
"manifest.json": [
"./scripts/validate-manifest.sh"
]
},
"dependencies": {
"markdownlint": "^0.28.1"
}
}