-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.25 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "clean-code-skill-kit",
"version": "1.2.0",
"description": "Plug-and-play AI skill adapters, linting configs, and pre-commit hooks for Clean Code + DDD",
"license": "MIT",
"bin": {
"clean-code-skill": "./bin/clean-code-skill.js"
},
"files": [
"bin/",
"scripts/",
"skills/",
"pipelines/",
"linting/",
"COMMIT-GUIDE.md",
"README.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "husky",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"!node_modules\" \"!src\"",
"lint:json": "prettier --check \"**/*.json\" \"**/*.jsonc\"",
"lint:yaml": "prettier --check \"**/*.yml\" \"**/*.yaml\"",
"lint": "npm run lint:md && npm run lint:json && npm run lint:yaml",
"format:md": "prettier --write \"**/*.md\"",
"format:json": "prettier --write \"**/*.json\" \"**/*.jsonc\"",
"format:yaml": "prettier --write \"**/*.yml\" \"**/*.yaml\"",
"format": "npm run format:md && npm run format:json && npm run format:yaml",
"commitlint": "commitlint --edit",
"commit": "npx commit",
"migrate": "bash scripts/migrate.sh",
"migrate:dry": "bash scripts/migrate.sh --dry-run",
"migrate:yes": "bash scripts/migrate.sh --yes",
"migrate:harness": "bash scripts/migrate.sh --harness",
"lint:report": "bash scripts/lint-and-report.sh",
"lint:report:monorepo": "bash scripts/lint-and-report.sh --monorepo",
"release:notes": "bash scripts/generate-release-notes.sh",
"release:notes:dry": "bash scripts/generate-release-notes.sh --dry-run"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/prompt-cli": "^19.3.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"markdownlint-cli2": "^0.13.0",
"prettier": "^3.3.2"
},
"lint-staged": {
"*.md": [
"markdownlint-cli2 --fix",
"prettier --write"
],
"*.{json,jsonc}": [
"prettier --write"
],
"*.{yml,yaml}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"prettier --write"
],
"*.py": [
"ruff check --fix",
"ruff format"
],
"*.go": [
"gofmt -w"
],
"*.cs": [
"dotnet format --include"
],
"*.sh": [
"shfmt -w"
]
}
}