-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.24 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.24 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
{
"private": true,
"workspaces": [
"packages/*",
"privatePackages/*",
"types/*",
"tools",
"util/*",
"examples/*"
],
"scripts": {
"postinstall": "is-ci || lefthook install",
"tsc:check": "yarn workspaces foreach -Ap run tsc:check",
"biome:check": "biome check --error-on-warnings",
"biome:fix": "biome check --write",
"biome:fix-unsafe": "biome check --write --unsafe",
"markdownlint:check": "markdownlint -p .gitignore '**/*.md' '**/*.mdx'",
"markdownlint:fix": "markdownlint -p .gitignore --fix '**/*.md' '**/*.mdx'",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"clean": "yarn workspaces foreach -Ap run clean",
"build-doc": "./scripts/yarn-workspaces-exec-if-dep.sh devDependencies typedoc typedoc",
"build": "yarn workspaces foreach -Apt run build",
"publish": "yarn workspaces foreach -A --no-private npm publish --tolerate-republish"
},
"packageManager": "yarn@4.13.0",
"devDependencies": {
"@ac-essentials/biome-config": "workspace:*",
"@ac-essentials/markdownlint-cli2-config": "workspace:*",
"@biomejs/biome": "2.4.10",
"@vitest/coverage-v8": "4.1.3",
"is-ci": "4.1.0",
"lefthook": "2.1.5",
"markdownlint-cli2": "0.22.0",
"vitest": "4.1.3"
}
}