-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.11 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.11 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
{
"name": "kamado-monorepo",
"description": "Bake your HTML hard. The on-demand static site generator.",
"repository": "https://github.com/d-zero-dev/kamado.git",
"author": "D-ZERO Co., Ltd.",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "lerna run build",
"dev": "lerna run dev",
"test": "vitest run --test-timeout 60000",
"lint": "run-s lint:eslint lint:prettier lint:textlint lint:cspell",
"lint:cspell": "npx cspell --no-progress --show-suggestions \"**\"",
"lint:eslint": "npx eslint --fix \"./{*,packages/**/src/{*,**/*}}.{ts,js,cjs,mjs}\"",
"lint:prettier": "npx prettier --write \"{*,./**/*}{.{md,mdc,mdx,js,jsx,ts,tsx,css,pug,html,json,yaml},*rc}\" \"!**/dist/**/*\"",
"lint:textlint": "npx textlint --fix \"{*,./**/*}.{md,mdc}\" && npx textlint \"{*,./**/*}.{md,mdc}\"",
"release": "lerna publish --exact --conventional-commits --conventional-graduate",
"release:alpha:latest": "lerna publish --exact --force-publish --conventional-commits --conventional-prerelease --preid alpha",
"release:beta:latest": "lerna publish --exact --force-publish --conventional-commits --conventional-prerelease --preid beta",
"release:next": "lerna publish --dist-tag next --exact --force-publish --conventional-commits --conventional-prerelease --preid alpha",
"postinstall": "husky",
"commit": "npx cz",
"co": "npx cz",
"update": "yarn upgrade-interactive"
},
"workspaces": [
"packages/*",
"packages/@kamado-io/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@d-zero/cz-config"
}
},
"devDependencies": {
"@d-zero/commitlint-config": "5.0.0",
"@d-zero/cspell-config": "5.0.0",
"@d-zero/eslint-config": "5.0.0",
"@d-zero/lint-staged-config": "5.0.0",
"@d-zero/prettier-config": "5.0.0",
"@d-zero/textlint-config": "5.0.0",
"@d-zero/tsconfig": "2.0.0",
"husky": "9.1.7",
"lerna": "9.0.7",
"memfs": "4.57.1",
"npm-run-all2": "8.0.4",
"typescript": "6.0.2",
"vitest": "4.1.1"
},
"packageManager": "yarn@4.12.0",
"volta": {
"node": "24.14.0",
"yarn": "4.12.0"
}
}