-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.58 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.58 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
{
"name": "@w5s/std-src",
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:w5s/std.git"
},
"type": "module",
"workspaces": {
"packages": [
"apps/*",
"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 && pnpm --filter @w5s/website run start",
"format": "turbo run format --continue",
"format:root": "eslint . --ignore-pattern='apps/*/**' --ignore-pattern='packages/*/**' --fix",
"lint": "turbo run lint",
"lint:root": "eslint . --ignore-pattern='apps/*/**' --ignore-pattern='packages/*/**'",
"mrm": "npm exec --package=@w5s/mrm-preset@latest --package=mrm -- mrm --preset @w5s/mrm-preset",
"prepare": "pnpm run \"/^prepare:.*/\"",
"prepare:githooks": "[ -n \"${CI:-}\" ] || git config core.hooksPath .githooks",
"prepare:packages": "turbo run prepare",
"release": "[ -n \"${CI:-}\" ] && npx lerna publish --yes || npx lerna publish",
"rescue": "git clean -fdx;pnpm install",
"size-limit": "turbo run size-limit",
"spellcheck": "turbo run spellcheck",
"spellcheck:root": "cspell --no-progress '**' --exclude='apps/*/**' --exclude='packages/*/**'",
"test": "turbo run test",
"validate": "turbo run build lint test spellcheck size-limit"
},
"commitlint": {
"extends": [
"@w5s/commitlint-config"
],
"rules": {}
},
"lint-staged": {
"*.js?(x)": [
"eslint"
],
"*.ts?(x)": [
"eslint"
],
"*.{json,jsonc,json5}": [
"eslint"
],
"*.{yml,yaml}": [
"eslint"
]
},
"devDependencies": {
"@lerna-lite/publish": "4.11.5",
"@size-limit/preset-small-lib": "12.0.1",
"@types/node": "20.19.37",
"@w5s/commitlint-config": "3.1.3",
"@w5s/conventional-changelog": "3.1.3",
"@w5s/cspell-config": "3.1.3",
"@w5s/eslint-config": "3.5.3",
"@w5s/tsconfig": "3.1.4",
"cspell": "9.7.0",
"eslint": "10.1.0",
"markdown-magic": "4.8.0",
"markdown-magic-package-json": "2.0.2",
"markdown-magic-subpackage-list": "1.1.2",
"size-limit": "12.0.1",
"size-limit-preset-node-lib": "0.4.0",
"tsdown": "0.21.7",
"turbo": "2.8.21",
"typedoc": "0.28.18",
"typescript": "6.0.2",
"vitest": "4.1.2"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20.0.0",
"npm": ">=6.0.0",
"pnpm": ">=10.0.0"
},
"pnpm": {
"overrides": {
"vitest": "4.1.2"
}
}
}