-
Notifications
You must be signed in to change notification settings - Fork 427
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 994 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 994 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
36
37
38
39
40
41
42
{
"name": "countries-workspace",
"version": "3.2.0",
"workspaces": {
"packages": [
"packages/*"
],
"catalogs": {
"default": {
"@biomejs/biome": "2.4.5",
"@types/bun": "1.3.10",
"turbo": "2.8.13",
"typescript": "5.9.3"
}
}
},
"scripts": {
"build": "turbo run build",
"bump": "bun update -i -r",
"check-types": "tsc --noEmit",
"ci": "turbo run lint build test",
"format": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --write --unsafe .",
"test": "turbo run test",
"version": "cd ./packages/scripts && bun run version"
},
"devDependencies": {
"@biomejs/biome": "catalog:default",
"@types/bun": "catalog:default",
"lefthook": "2.1.2",
"turbo": "catalog:default",
"typescript": "catalog:default"
},
"trustedDependencies": [
"@biomejs/biome",
"esbuild",
"lefthook",
"turbo"
],
"packageManager": "bun@1.3.3"
}