-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 748 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 748 Bytes
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
{
"name": "cel-tui",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"check": "biome check",
"check:fix": "biome check --write",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"typecheck": "tsc --noEmit",
"bench": "bun run benchmarks/run-all.ts",
"docs": "typedoc --out docs/html && typedoc --out docs/md --plugin typedoc-plugin-markdown",
"prepublish-check": "bun run scripts/prepublish-check.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@types/bun": "^1.3.12",
"lefthook": "^2.1.5",
"mitata": "^1.0.34",
"prettier": "^3.8.2",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.11.0",
"typescript": "^6.0.2"
}
}