-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 917 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "employee-handbook",
"version": "0.1.0",
"private": true,
"scripts": {
"watch": "md-to-pdf --config-file config.js src/**/*.md --watch",
"watch-file": "md-to-pdf --config-file config.js --watch",
"build": "md-to-pdf --config-file config.js src/**/*.md",
"lint": "markdownlint-cli2 --config .markdownlint-cli2.yaml \"src/**/*.md\" \"*.md\" #CLAUDE.md \"#src/Claudetopus_Workflow/**/*.md\"",
"lint:file": "markdownlint-cli2 --config .markdownlint-cli2.yaml",
"lint:offenders": "markdownlint-cli2 --config .markdownlint-cli2.yaml \"src/**/*.md\" \"*.md\" #CLAUDE.md \"#src/Claudetopus_Workflow/**/*.md\" 1>/dev/null 2>&1 | cut -d: -f1 | sort | uniq -c | sort -n",
"normalize": "./normalize.sh"
},
"dependencies": {
"markdownlint-cli2": "^0.20.0",
"md-to-pdf": "^5.2.5"
},
"packageManager": "yarn@4.12.0"
}