-
Notifications
You must be signed in to change notification settings - Fork 553
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 1.74 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
{
"name": "claude-code-source-study",
"private": true,
"version": "0.0.0",
"description": "深入 Claude Code 源码 · v2 修订 · CI 闸与附录生成",
"scripts": {
"gen:appendix:A": "bun scripts/gen-tool-table.ts",
"gen:appendix:B": "bun scripts/gen-commands-table.ts",
"gen:appendix:C": "bun scripts/gen-hooks-table.ts",
"gen:appendix:D": "bun scripts/gen-agents-table.ts",
"gen:appendix:E": "bun scripts/gen-tasktypes-table.ts",
"gen:appendix:F": "bun scripts/gen-module-matrix.ts",
"gen:appendix": "bun scripts/gen-tool-table.ts && bun scripts/gen-commands-table.ts && bun scripts/gen-hooks-table.ts && bun scripts/gen-agents-table.ts && bun scripts/gen-tasktypes-table.ts && bun scripts/gen-module-matrix.ts",
"check:source-commits": "bun scripts/check-source-commits.ts",
"check:no-fuzzy": "bun scripts/lint-no-fuzzy-quantifiers.ts",
"check:prose-diff": "bun scripts/check-prose-diff-ratio.ts",
"check:headings": "bun scripts/check-heading-preservation.ts",
"check:code-ratio": "bun scripts/check-code-ratio.ts",
"check:section-titles": "bun scripts/lint-section-titles.ts",
"check:no-revision-codenames": "bun scripts/lint-no-revision-codenames.ts",
"check:no-frontmatter": "bun scripts/check-no-frontmatter-in-chapters.ts",
"check:no-spec-jargon": "bun scripts/lint-no-spec-jargon-in-prose.ts",
"check:orphans": "bun scripts/gen-module-matrix.ts --check-orphans",
"check:docs": "bun run check:source-commits && bun run check:no-fuzzy && bun run check:no-revision-codenames && bun run check:no-frontmatter && bun run check:no-spec-jargon && bun run check:prose-diff && bun run check:headings && bun run check:code-ratio && bun run check:section-titles && bun run check:orphans"
}
}