-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 870 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 870 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
{
"name": "dev-encyclopedia",
"version": "1.0.0",
"description": "Developer's Encyclopedia - Obsidian vault with comprehensive developer reference",
"private": true,
"scripts": {
"lint": "markdownlint-cli2 '**/*.md' '#node_modules' '#.obsidian'",
"lint:fix": "markdownlint-cli2 --fix '**/*.md' '#node_modules' '#.obsidian'",
"validate:frontmatter": "node scripts/validate-frontmatter.js",
"validate:links": "node scripts/validate-wikilinks.js",
"spell": "cspell --config cspell.json '**/*.md' --no-progress",
"validate": "npm run lint && npm run validate:frontmatter && npm run validate:links",
"validate:all": "npm run validate && npm run spell"
},
"devDependencies": {
"markdownlint-cli2": "^0.14.0",
"gray-matter": "^4.0.3",
"glob": "^11.0.0",
"cspell": "^8.14.0"
},
"engines": {
"node": ">=18"
}
}