-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.19 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.19 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
{
"name": "linters",
"description": "Linters and their configurations of D-ZERO Co., Ltd.",
"repository": "https://github.com/d-zero-dev/linters.git",
"author": "D-ZERO Co., Ltd.",
"license": "MIT",
"private": true,
"type": "module",
"workspaces": [
"packages/@d-zero/*"
],
"scripts": {
"test": "vitest run",
"build": "lerna run build",
"lint": "run-s lint:tsc lint:eslint lint:prettier lint:textlint lint:cspell lint:secretlint lint:actionlint",
"lint:ci": "run-s lint:tsc lint:eslint lint:prettier lint:textlint lint:cspell lint:secretlint",
"lint:cspell": "npx cspell --no-progress --show-suggestions \"{*,packages/@d-zero/*/{*,src/**/*}}/\"",
"lint:eslint": "npx eslint --fix \"{*,packages/@d-zero/*/{*,src/**/*}}.{js,cjs,mjs,jsx,ts,cts,mts,tsx}\"",
"lint:prettier": "npx prettier --write \"{*,**/*}.{md,mdc,json,js,cjs,mjs,jsx,ts,cts,mts,tsx}\"",
"lint:textlint": "npx textlint \"./{*,packages/@d-zero/*/{*,src/**/*}}.{md,mdc}\"",
"lint:tsc": "npx tsc",
"lint:secretlint": "npx secretlint \"**/*\"",
"lint:actionlint": "actionlint .github/workflows/*.yml",
"release": "lerna publish --exact --conventional-commits --conventional-graduate",
"release:alpha:latest": "lerna publish --exact --force-publish --conventional-commits --conventional-prerelease --preid alpha",
"release:next": "lerna publish --dist-tag next --exact --force-publish --conventional-commits --conventional-prerelease --preid alpha",
"release:canary": "lerna publish --preid dev --canary --exact --force-publish",
"commit": "npx cz",
"co": "npx cz",
"prepare": "husky",
"update": "yarn upgrade-interactive"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@d-zero/cz-config"
}
},
"devDependencies": {
"@d-zero/tsconfig": "1.0.0",
"@secretlint/secretlint-rule-preset-recommend": "11.3.1",
"execa": "9.6.1",
"husky": "9.1.7",
"lerna": "9.0.4",
"npm-run-all2": "8.0.4",
"prettier": "3.8.1",
"secretlint": "11.3.1",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"resolutions": {
"baseline-browser-mapping": "^2"
},
"packageManager": "yarn@4.12.0",
"volta": {
"node": "24.14.0",
"yarn": "4.12.0"
}
}