-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.15 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.15 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
{
"version": "0.27.0-rc.0",
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"examples/*"
],
"packageManager": "yarn@4.12.0",
"devDependencies": {
"@eslint/js": "^9.23.0",
"cspell": "^9.4.0",
"eslint": "^9.23.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.5.3",
"typedoc": "^0.28.1",
"typedoc-material-theme": "^1.3.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.29.0"
},
"scripts": {
"build": "yarn workspaces foreach -At run build",
"lint": "yarn workspaces foreach -At run lint",
"lint:check": "yarn workspaces foreach -At run lint:check",
"typecheck": "yarn workspaces foreach -A -p run typecheck",
"format:check": "yarn workspaces foreach -A -p run format:check",
"format": "yarn workspaces foreach -A -p run format",
"docs": "typedoc",
"spellcheck": "cspell '**/*.md' '**/*.mdx' '**/*.html' --exclude '**/api/**' --show-suggestions",
"spellcheck:report": "yarn spellcheck --no-show-suggestions",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,mjs,cjs,json,md,mdx,yaml,yml}": "prettier --write"
}
}