-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.75 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.75 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
47
48
49
50
51
{
"name": "mcjcoderorg-claudeautoresume-tooling",
"version": "0.0.0",
"private": true,
"description": "Development tooling for McjCoderOrg.ClaudeAutoResume",
"type": "module",
"scripts": {
"prepare": "husky",
"lint": "npm run lint:format && npm run lint:markdown && npm run lint:spelling && npm run lint:secrets && npm run lint:adr",
"lint:format": "prettier --check \"**/*.md\" \"**/*.json\" \"**/*.yml\" --ignore-path .gitignore",
"lint:format:fix": "prettier --write \"**/*.md\" \"**/*.json\" \"**/*.yml\" --ignore-path .gitignore",
"lint:markdown": "markdownlint \"**/*.md\" --ignore node_modules --ignore .git",
"lint:markdown:fix": "markdownlint \"**/*.md\" --ignore node_modules --ignore .git --fix",
"lint:spelling": "cspell \"**/*.md\" \"**/*.cs\" \"**/*.json\" --no-progress",
"lint:secrets": "secretlint \"**/*\"",
"secretlint": "secretlint \"**/*\"",
"secretlint:fix": "secretlint \"**/*\" --fix",
"lint:adr": "node scripts/validate-adr.js docs/adr/"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@secretlint/secretlint-rule-preset-recommend": "^11.3.0",
"cspell": "^9.6.0",
"danger": "^12.3.3",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"markdownlint-cli": "^0.47.0",
"prettier": "^3.4.2",
"secretlint": "^11.3.0"
},
"lint-staged": {
"*.cs": [
"dotnet format --include",
"dotnet format --verify-no-changes --include",
"cspell --no-must-find-files"
],
"*.md": [
"prettier --write",
"markdownlint --fix",
"cspell --no-must-find-files"
],
"*.{json,yml}": [
"prettier --write"
]
},
"engines": {
"node": ">=22.0.0"
}
}