-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.7 KB
/
package.json
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
{
"private": true,
"type": "module",
"scripts": {
"build": "lerna run build",
"watch": "lerna run watch --parallel",
"clean": "lerna run clean",
"test": "vitest run",
"lint": "run-s lint:eslint lint:prettier lint:textlint lint:cspell",
"lint:cspell": "cspell --no-progress --show-suggestions \"{*,packages/@d-zero/*/{*,src/**/*}}/\"",
"lint:eslint": "eslint --fix \"{*,packages/@d-zero/*/{*,src/**/*}}.{js,cjs,mjs,jsx,ts,cts,mts,tsx}\"",
"lint:prettier": "prettier --write \"{*,packages/@d-zero/*/{*,src/**/*}}.{md,json,js,cjs,mjs,jsx,ts,cts,mts,tsx}\"",
"lint:textlint": "textlint --fix \"./{*,packages/@d-zero/*/{*,src/**/*}}.{md}\"",
"release": "lerna publish --exact --conventional-commits --conventional-graduate",
"release:next": "lerna publish --dist-tag next --exact --force-publish --conventional-commits --conventional-prerelease --preid alpha",
"prerelease": "yarn build; yarn test",
"prepare": "husky",
"commit": "cz",
"co": "cz",
"up": "yarn upgrade-interactive --latest"
},
"workspaces": [
"packages/@d-zero/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@d-zero/cz-config"
}
},
"devDependencies": {
"@d-zero/commitlint-config": "5.0.0-alpha.56",
"@d-zero/cspell-config": "5.0.0-alpha.55",
"@d-zero/eslint-config": "5.0.0-alpha.55",
"@d-zero/lint-staged-config": "5.0.0-alpha.55",
"@d-zero/prettier-config": "5.0.0-alpha.55",
"@d-zero/textlint-config": "5.0.0-alpha.55",
"@d-zero/tsconfig": "0.4.0",
"husky": "9.1.7",
"lerna": "8.1.9",
"npm-run-all2": "7.0.2",
"typescript": "5.7.3",
"vitest": "2.1.9"
},
"volta": {
"node": "22.13.1",
"yarn": "1.22.22"
}
}