-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.64 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.64 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@w5s/project-config-src",
"version": "1.0.0-alpha.0",
"private": true,
"description": "",
"repository": {
"type": "git",
"url": "git@github.com:w5s/project-config.git"
},
"license": "MIT",
"type": "module",
"files": [],
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"code-analysis": ":",
"configure": "npm run mrm -- configure",
"coverage": ":",
"develop": ":",
"docs": "node markdown.mjs && turbo run docs",
"format": "turbo run format --continue",
"format:root": "eslint . --ignore-pattern='packages/*/**' --fix",
"lint": "turbo run lint",
"lint:root": "eslint . --ignore-pattern='packages/*/**'",
"mrm": "pnpm exec --package=mrm -- mrm --dir ./packages/mrm-preset",
"postbuild": "pnpm run docs",
"prepare": "pnpm run \"/^prepare:.*/\"",
"prepare:githooks": "if [ -z \"${CI:-}\" ]; then git config core.hooksPath .githooks; fi",
"prepare:packages": "turbo run prepare",
"release": "[ -n \"${CI:-}\" ] && pnpm exec lerna publish --yes || pnpm exec lerna publish",
"rescue": "git clean -fdx;pnpm install",
"spellcheck": "turbo run spellcheck",
"spellcheck:root": "cspell --no-progress '**' --exclude='packages/*/**'",
"test": "turbo run test",
"validate": "turbo run build lint test spellcheck"
},
"commitlint": {
"extends": [
"@w5s/commitlint-config"
]
},
"lint-staged": {
"!(**/dist/**)*.js?(x)": [
"eslint"
],
"!(**/dist/**)*.ts?(x)": [
"eslint"
],
"*.{json,jsonc,json5}": [
"eslint"
],
"*.{yml,yaml}": [
"eslint"
],
"*.js?(x)": [
"eslint"
],
"*.ts?(x)": [
"eslint"
]
},
"devDependencies": {
"@lerna-lite/cli": "5.0.0",
"@lerna-lite/publish": "5.0.0",
"@types/node": "20.19.39",
"@w5s/commitlint-config": "workspace:*",
"@w5s/conventional-changelog": "workspace:*",
"@w5s/cspell-config": "workspace:*",
"@w5s/eslint-config": "workspace:*",
"@w5s/mrm-preset": "workspace:*",
"@w5s/prettier-config": "workspace:*",
"@w5s/tsconfig": "workspace:*",
"clean-package": "2.2.0",
"cspell": "10.0.0",
"eslint": "10.2.1",
"eslint-plugin-sort-keys": "2.3.5",
"markdown-magic": "4.8.0",
"markdown-magic-package-json": "2.0.2",
"markdown-magic-subpackage-list": "1.1.2",
"turbo": "2.9.6",
"typescript": "6.0.3",
"vite": "8.0.8",
"vitest": "4.1.4"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20.0.0",
"npm": ">=6.0.0",
"pnpm": ">=10.0.0"
},
"sideEffect": false
}