-
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) · 834 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 834 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": "orca",
"type": "module",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"prepare": "if [ -d .git ]; then husky; fi && bunx effect-language-service patch",
"test": "bun --filter './apps/*' test",
"check": "bun --filter './apps/*' check",
"build": "bun --filter './apps/*' build",
"dev": "bun --filter '@orca/cli' dev"
},
"packageManager": "bun@1.3.7",
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@effect/language-service": "^0.75.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxlint": "^1.49.0",
"prettier": "^3.8.1",
"tsdown": "^0.20.3",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"oxlint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}