-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.97 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.97 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
{
"name": "@kcws/root",
"version": "0.0.0-development",
"private": true,
"scripts": {
"postinstall": "pnpm run --filter '@kcconfigs/*' build",
"build:all": "pnpm recursive run --if-present --stream build",
"test:all": "vitest run",
"check:commit": "commitlint",
"check:text": "textlint --config .github/linters/textlintrc.yaml --ignore-path .github/linters/textlintrc.ignore.txt",
"check:text:fix": "pnpm run check:text --fix .",
"check:text:ci": "pnpm run check:text --format github .",
"check:file": "ls-lint --config .github/linters/ls-lint.yaml",
"check:all": "pnpm recursive run --if-present --stream check",
"fix:all": "pnpm recursive run --if-present --stream fix",
"docs:all": "typedoc",
"clean": "rimraf --verbose --glob -- **/*.tsbuildinfo **/dist docs reports",
"clean:all": "pnpm clean && rimraf --verbose --glob -- **/node_modules pnpm-lock.yaml",
"commit": "git-cz",
"hooks:pre-commit:check:biome": "biome check --fix --unsafe --no-errors-on-unmatched --colors=off",
"hooks:pre-commit:check:text": "pnpm run check:text --fix --no-color",
"hooks:pre-commit:check:file": "pnpm run check:file",
"hooks:pre-push:check:type": "pnpm recursive run --if-present --stream type:check",
"hooks:pre-push:check:lint": "biome lint --no-errors-on-unmatched --colors=off",
"hooks:pre-push:check:format": "biome format --no-errors-on-unmatched --colors=off",
"hooks:pre-push:test": "vitest run --no-color"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@commitlint/cli": "catalog:commitlint:latest",
"@commitlint/cz-commitlint": "catalog:commitlint:latest",
"@kcconfigs/biome": "workspace:",
"@kcconfigs/commitlint": "workspace:",
"@kcconfigs/tsconfig": "workspace:",
"@kcconfigs/typedoc": "workspace:",
"@kcconfigs/vitest": "workspace:",
"@kcconfigs/textlint": "workspace:",
"@ls-lint/ls-lint": "catalog:",
"@vitest/coverage-v8": "catalog:test:latest",
"@vitest/ui": "catalog:test:latest",
"commitizen": "catalog:commitlint:latest",
"inquirer": "catalog:commitlint:latest",
"lefthook": "catalog:",
"rimraf": "6.1.2",
"textlint": "catalog:textlint:latest",
"textlint-filter-rule-allowlist": "catalog:textlint:latest",
"textlint-filter-rule-comments": "catalog:textlint:latest",
"typedoc": "catalog:typedoc:latest",
"typedoc-github-theme": "catalog:typedoc:latest",
"typedoc-plugin-dt-links": "catalog:typedoc:latest",
"typedoc-plugin-extras": "catalog:typedoc:latest",
"typedoc-plugin-include-example": "catalog:typedoc:latest",
"typedoc-plugin-mdn-links": "catalog:typedoc:latest",
"typedoc-plugin-missing-exports": "catalog:typedoc:latest",
"vitest": "catalog:test:latest"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"engines": {
"node": "^20.9.0 || ^22.11.0 || ^24.11.0 || >=25.0.0"
},
"volta": {
"node": "24.12.0"
},
"packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017"
}