-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 872 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 872 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
{
"name": "effect-orpc-workspace",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "turbo run build",
"build:watch": "turbo run build:watch --parallel",
"type:check": "turbo run type:check",
"lint:check": "oxlint",
"format": "oxfmt",
"format:check": "oxfmt --check",
"check": "bun run format:check && bun run lint:check && bun run type:check",
"fix": "bun run format && oxlint --fix",
"test": "turbo run test",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "bun run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"turbo": "^2.8.14",
"ultracite": "7.2.5"
},
"packageManager": "bun@1.3.9",
"catalog": {
"vitest": "^4.0.18"
}
}