-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 860 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 860 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
{
"name": "effect-herdr-workspace",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"typecheck": "bun --filter '*' typecheck",
"test": "bun --filter effect-herdr test",
"test:e2e": "bun --filter effect-herdr-e2e test",
"test:all": "bun --filter '*' test",
"build": "bun --filter effect-herdr build",
"schema:refresh": "herdr api schema --json > scripts/herdr-schema.json && echo 'refreshed scripts/herdr-schema.json'",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@effect/platform-bun": "4.0.0-beta.74",
"@types/bun": "latest",
"effect": "4.0.0-beta.74",
"publint": "^0.3.21",
"tsdown": "^0.22.13",
"typescript": "^5.6.0"
}
}