-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 814 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 814 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
28
29
30
31
32
33
34
35
{
"name": "realm",
"description": "A monorepo for my personal apps consisting portfolio, tools, bot, etc",
"author": "ahargunyllib",
"packageManager": "pnpm@10.14.0",
"type": "module",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"alchemy": "^0.90.1",
"typescript": "^5.9.3"
}
},
"devDependencies": {
"@biomejs/biome": "2.3.6",
"alchemy": "catalog:",
"lefthook": "^2.0.4",
"typescript": "catalog:",
"ultracite": "6.3.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"pnpm fix"
]
},
"scripts": {
"check": "pnpm dlx ultracite check",
"fix": "pnpm dlx ultracite fix",
"typecheck": "pnpm --filter \"*\" typecheck",
"test": "pnpm --filter \"*\" test"
}
}